Add keychain password

This commit is contained in:
Jonas Franz 2020-06-17 12:53:41 +02:00
parent 97f51aab02
commit f5de87ae38
Signed by: JonasFranz
GPG Key ID: 7293A220B7C38080
2 changed files with 5 additions and 3 deletions

View File

@ -154,6 +154,8 @@ steps:
HOME: /Users/buildslave HOME: /Users/buildslave
LC_ALL: en_US.UTF-8 LC_ALL: en_US.UTF-8
LANG: en_US.UTF-8 LANG: en_US.UTF-8
KEYCHAIN_PASSWORD:
from_secret: keychain_password
MATCH_PASSWORD: MATCH_PASSWORD:
from_secret: match_password from_secret: match_password
- name: deploy - name: deploy

View File

@ -18,12 +18,12 @@ default_platform(:ios)
platform :ios do platform :ios do
desc "Push a new beta build to TestFlight" desc "Push a new beta build to TestFlight"
lane :beta do lane :beta do
match(type: "appstore", readonly: true) match(type: "appstore", readonly: true, keychain_password: ENV["KEYCHAIN_PASSWORD"])
gym gym
upload_to_testflight upload_to_testflight
end end
lane :signing do lane :signing do
match(type: "appstore", readonly: true) match(type: "appstore", readonly: true, keychain_password: ENV["KEYCHAIN_PASSWORD"])
match(type: "development", readonly: true) match(type: "development", readonly: true, keychain_password: ENV["KEYCHAIN_PASSWORD"])
end end
end end