From abe1d8b809968b28362663b9e574ab6462398f39 Mon Sep 17 00:00:00 2001 From: Santhosh Vaiyapuri Date: Thu, 20 Oct 2022 12:26:33 +0200 Subject: [PATCH] chore: add workaround for testflight broken api --- projects/SlackClone/fastlane/Fastfile | 3 +++ projects/WhatsAppClone/fastlane/Fastfile | 3 +++ projects/iMessageClone/fastlane/Fastfile | 3 +++ 3 files changed, 9 insertions(+) diff --git a/projects/SlackClone/fastlane/Fastfile b/projects/SlackClone/fastlane/Fastfile index 612daff..5dc1752 100644 --- a/projects/SlackClone/fastlane/Fastfile +++ b/projects/SlackClone/fastlane/Fastfile @@ -82,6 +82,9 @@ platform :ios do testflight_groups = (git_branch() == "main") ? ['Dev Testers', 'Public Testers'] : ['Dev Testers'] + # https://github.com/fastlane/fastlane/issues/20741 + ENV['ITMSTRANSPORTER_FORCE_ITMS_PACKAGE_UPLOAD'] = 'true' + begin upload_to_testflight( groups: testflight_groups, diff --git a/projects/WhatsAppClone/fastlane/Fastfile b/projects/WhatsAppClone/fastlane/Fastfile index 78cdd97..69aff6f 100644 --- a/projects/WhatsAppClone/fastlane/Fastfile +++ b/projects/WhatsAppClone/fastlane/Fastfile @@ -84,6 +84,9 @@ platform :ios do testflight_groups = (git_branch() == "main") ? ['Dev Testers', 'Public Testers'] : ['Dev Testers'] + # https://github.com/fastlane/fastlane/issues/20741 + ENV['ITMSTRANSPORTER_FORCE_ITMS_PACKAGE_UPLOAD'] = 'true' + begin upload_to_testflight( groups: testflight_groups, diff --git a/projects/iMessageClone/fastlane/Fastfile b/projects/iMessageClone/fastlane/Fastfile index 176ee1d..fc3099d 100644 --- a/projects/iMessageClone/fastlane/Fastfile +++ b/projects/iMessageClone/fastlane/Fastfile @@ -84,6 +84,9 @@ platform :ios do testflight_groups = (git_branch() == "main") ? ['Dev Testers', 'Public Testers'] : ['Dev Testers'] + # https://github.com/fastlane/fastlane/issues/20741 + ENV['ITMSTRANSPORTER_FORCE_ITMS_PACKAGE_UPLOAD'] = 'true' + begin upload_to_testflight( groups: testflight_groups,