From a34ec7ffbe86d045518ba7c35b2a4b4892e6051d Mon Sep 17 00:00:00 2001 From: Igor Mandrigin Date: Thu, 28 Feb 2019 09:27:54 +0100 Subject: [PATCH] [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 --- fastlane/Fastfile | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/fastlane/Fastfile b/fastlane/Fastfile index 925ff3d5d5..e4aa249f97 100644 --- a/fastlane/Fastfile +++ b/fastlane/Fastfile @@ -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"