From 101fee9a370f4b8fdd1415f1e39e9372e90b5d15 Mon Sep 17 00:00:00 2001 From: Arkadiusz Fal Date: Sat, 13 Jan 2024 10:08:53 +0100 Subject: [PATCH] Revert "Enable external distribution" This reverts commit 51e5aeec13539e93b0972e5a24b501b36ee06ece. --- fastlane/Fastfile | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/fastlane/Fastfile b/fastlane/Fastfile index 444f7f47..d6b661d5 100644 --- a/fastlane/Fastfile +++ b/fastlane/Fastfile @@ -116,8 +116,8 @@ platform :ios do upload_to_testflight( api_key: api_key, ipa: lane_context[SharedValues::IPA_OUTPUT_PATH], - distribute_external: true, - groups: TESTFLIGHT_EXTERNAL_GROUPS, + # distribute_external: true, + # groups: TESTFLIGHT_EXTERNAL_GROUPS, changelog: changelog ) end @@ -168,8 +168,8 @@ platform :tvos do upload_to_testflight( api_key: api_key, ipa: lane_context[SharedValues::IPA_OUTPUT_PATH], - distribute_external: true, - groups: TESTFLIGHT_EXTERNAL_GROUPS, + # distribute_external: true, + # groups: TESTFLIGHT_EXTERNAL_GROUPS, changelog: changelog ) end @@ -221,8 +221,8 @@ platform :mac do upload_to_testflight( api_key: api_key, pkg: lane_context[SharedValues::PKG_OUTPUT_PATH], - distribute_external: true, - groups: TESTFLIGHT_EXTERNAL_GROUPS, + # distribute_external: true, + # groups: TESTFLIGHT_EXTERNAL_GROUPS, changelog: changelog ) end