Skip to content

Commit

Permalink
Do not reject builds waiting for TestFlight review (#23118)
Browse files Browse the repository at this point in the history
Avoids CI failure.
  • Loading branch information
mokagio authored May 1, 2024
2 parents f5e4a68 + c1dc1c6 commit 13b701d
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions fastlane/lanes/build.rb
Original file line number Diff line number Diff line change
Expand Up @@ -434,8 +434,12 @@ def upload_build_to_testflight(whats_new_path:, distribution_groups:)
changelog: File.read(whats_new_path),
distribute_external: true,
groups: distribution_groups,
# If there is a build waiting for beta review, we want to reject that so the new build can be submitted instead
reject_build_waiting_for_review: true
# If there is a build waiting for beta review, we ~~want~~ would like to to reject that so the new build can be submitted instead.
# Unfortunately, this is not (no longer?) possible via the ASC API.
# See https://github.com/fastlane/fastlane/issues/18408
#
# As a quick workaround to avoid CI failures, let's explicitly disable rejecting builds waiting for review.
reject_build_waiting_for_review: false
)
end

Expand Down

0 comments on commit 13b701d

Please sign in to comment.