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
LC_ALL: en_US.UTF-8
LANG: en_US.UTF-8
KEYCHAIN_PASSWORD:
from_secret: keychain_password
MATCH_PASSWORD:
from_secret: match_password
- name: deploy

View File

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