From c6ebd5db2b51d602227f916f57f35a867a31f2ba Mon Sep 17 00:00:00 2001 From: Daniel Arantes Loverde Date: Fri, 31 Jul 2026 11:52:24 -0300 Subject: [PATCH] [macos-runner] Don't auto-submit for review after upload Binary upload itself succeeded - the only failure was upload_to_app_store's default auto-submission colliding with an existing in-progress review submission. CI should deliver the build; submitting for review stays a deliberate manual step in App Store Connect. --- Darwin/fastlane/Fastfile | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Darwin/fastlane/Fastfile b/Darwin/fastlane/Fastfile index 8a8b099..6fda24a 100644 --- a/Darwin/fastlane/Fastfile +++ b/Darwin/fastlane/Fastfile @@ -63,7 +63,8 @@ lane :release do |options| upload_to_app_store( api_key_path: "fastlane/apikey.json", app_rating_config_path: "fastlane/metadata/rating.json", - release_notes: { default: "Fixes and improvements." } + release_notes: { default: "Fixes and improvements." }, + submit_for_review: false ) end