Skip to content

Commit 3de7c08

Browse files
authored
chore: add workaround for testflight broken api (#53)
1 parent 4348950 commit 3de7c08

File tree

3 files changed

+9
-0
lines changed

3 files changed

+9
-0
lines changed

projects/SlackClone/fastlane/Fastfile

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -82,6 +82,9 @@ platform :ios do
8282

8383
testflight_groups = (git_branch() == "main") ? ['Dev Testers', 'Public Testers'] : ['Dev Testers']
8484

85+
# https://github.com/fastlane/fastlane/issues/20741
86+
ENV['ITMSTRANSPORTER_FORCE_ITMS_PACKAGE_UPLOAD'] = 'true'
87+
8588
begin
8689
upload_to_testflight(
8790
groups: testflight_groups,

projects/WhatsAppClone/fastlane/Fastfile

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -84,6 +84,9 @@ platform :ios do
8484

8585
testflight_groups = (git_branch() == "main") ? ['Dev Testers', 'Public Testers'] : ['Dev Testers']
8686

87+
# https://github.com/fastlane/fastlane/issues/20741
88+
ENV['ITMSTRANSPORTER_FORCE_ITMS_PACKAGE_UPLOAD'] = 'true'
89+
8790
begin
8891
upload_to_testflight(
8992
groups: testflight_groups,

projects/iMessageClone/fastlane/Fastfile

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -84,6 +84,9 @@ platform :ios do
8484

8585
testflight_groups = (git_branch() == "main") ? ['Dev Testers', 'Public Testers'] : ['Dev Testers']
8686

87+
# https://github.com/fastlane/fastlane/issues/20741
88+
ENV['ITMSTRANSPORTER_FORCE_ITMS_PACKAGE_UPLOAD'] = 'true'
89+
8790
begin
8891
upload_to_testflight(
8992
groups: testflight_groups,

0 commit comments

Comments
 (0)