From 1e0f24fbc4872d838a0502c744ca51d188177249 Mon Sep 17 00:00:00 2001 From: Andreas Stefl Date: Sun, 2 Aug 2026 23:25:12 +0200 Subject: [PATCH] Fix the option that keeps a release off review upload_to_app_store rejected skip_submission, so the 1.37 run archived, signed and exported an ipa and then died before uploading it. The option is pilot's, not deliver's; deliver's equivalent is submit_for_review, and it already defaults to false. Co-Authored-By: Claude Opus 5 (1M context) Claude-Session: https://claude.ai/code/session_01V9nhuP2EuynAs6bRLaTg5X --- fastlane/Fastfile | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/fastlane/Fastfile b/fastlane/Fastfile index 47519e2..e715640 100644 --- a/fastlane/Fastfile +++ b/fastlane/Fastfile @@ -153,8 +153,9 @@ platform :ios do skip_screenshots: true, skip_metadata: true, # uploading is not the same as shipping: promoting a build stays a - # deliberate step in App Store Connect - skip_submission: true, + # deliberate step in App Store Connect. deliver's option is + # submit_for_review; skip_submission is pilot's and is rejected here. + submit_for_review: false, precheck_include_in_app_purchases: false ) end