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"