[temporary workaround] ci: don't check certificates in AppStoreConnect when building iOS

it will break adding new devices, but will help workaround the isssue
that we don't have 2FA installed on our Apple ID

Signed-off-by: Igor Mandrigin <i@mandrigin.ru>
This commit is contained in:
Igor Mandrigin 2019-02-28 09:27:54 +01:00
parent 8aaafa3102
commit a34ec7ffbe
No known key found for this signature in database
GPG Key ID: 4A0EDDE26E66BC8B
1 changed files with 4 additions and 2 deletions

View File

@ -151,14 +151,16 @@ platform :ios do
desc "This lane builds a new adhoc build and leaves an .ipa that is ad-hoc signed (can be uploaded to diawi)"
lane :pr do
unlock_keychain_if_needed
build_ios_adhoc(false)
# TODO: fixme when 2FA is setup
build_ios_adhoc(true)
end
desc "`fastlane ios nightly` - makes a new nightly"
desc "This lane builds a new nightly and leaves an .ipa that is ad-hoc signed (can be uploaded to diawi)"
lane :nightly do
unlock_keychain_if_needed
build_ios_adhoc(false)
# TODO: fixme when 2FA is setup
build_ios_adhoc(true)
end
desc "`fastlane ios release` builds a release & uploads it to TestFlight"