[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.
This commit is contained in:
Daniel Arantes Loverde
2026-07-31 11:52:24 -03:00
parent 007227f0ea
commit c6ebd5db2b

View File

@@ -63,7 +63,8 @@ lane :release do |options|
upload_to_app_store( upload_to_app_store(
api_key_path: "fastlane/apikey.json", api_key_path: "fastlane/apikey.json",
app_rating_config_path: "fastlane/metadata/rating.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 end