From f9ddc9452bf27773d499a2c41676a628e26eef62 Mon Sep 17 00:00:00 2001 From: andrew Date: Mon, 22 Mar 2021 14:45:50 -0600 Subject: [PATCH 1/2] Due to Fastlane error, skip beta rollout temporarily --- fastlane/Fastfile | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/fastlane/Fastfile b/fastlane/Fastfile index b58783fabba8..a882c373e857 100644 --- a/fastlane/Fastfile +++ b/fastlane/Fastfile @@ -113,7 +113,12 @@ platform :ios do upload_to_testflight( api_key_path: "./ios/ios-fastlane-json-key.json", - distribute_external: true, + # TODO: Remove skip_waiting_for_build_processing when https://github.com/fastlane/fastlane/issues/18408 is resolved + # See: https://github.com/Expensify/Expensify.cash/pull/1984 for more information + skip_waiting_for_build_processing: true, + # TODO: Set distribute_external back to false when https://github.com/fastlane/fastlane/issues/18408 is resolved + # See: https://github.com/Expensify/Expensify.cash/pull/1984 for more information + distribute_external: false, # TODO: Set reject_build_waiting_for_review back to true when https://github.com/fastlane/fastlane/issues/18408 is resolved # See: https://github.com/Expensify/Expensify.cash/pull/1984 for more information reject_build_waiting_for_review: false, From 1f1bb7c0b48b23fe5fab24733194b124511d9665 Mon Sep 17 00:00:00 2001 From: andrew Date: Mon, 22 Mar 2021 14:48:42 -0600 Subject: [PATCH 2/2] Fix comment --- fastlane/Fastfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/fastlane/Fastfile b/fastlane/Fastfile index a882c373e857..82fc1811ebc9 100644 --- a/fastlane/Fastfile +++ b/fastlane/Fastfile @@ -116,7 +116,7 @@ platform :ios do # TODO: Remove skip_waiting_for_build_processing when https://github.com/fastlane/fastlane/issues/18408 is resolved # See: https://github.com/Expensify/Expensify.cash/pull/1984 for more information skip_waiting_for_build_processing: true, - # TODO: Set distribute_external back to false when https://github.com/fastlane/fastlane/issues/18408 is resolved + # TODO: Set distribute_external back to true when https://github.com/fastlane/fastlane/issues/18408 is resolved # See: https://github.com/Expensify/Expensify.cash/pull/1984 for more information distribute_external: false, # TODO: Set reject_build_waiting_for_review back to true when https://github.com/fastlane/fastlane/issues/18408 is resolved