Search code examples
iosstorefastlane

Fastlane deliver: promote for review


I’m using the amazing fastlane toolset to build and upload my iOS app to Apple Store Connect.

I wasn’t able to understand how to promote for review an app already existing in Apple Store Connect.

Which statement should I add to my Fastfile or Deliverfile ?

Thanks


Solution

  • Set submit_for_review: true in the fastfile:

    deliver(
      submit_for_review: true,
      ...
    )
    

    https://docs.fastlane.tools/actions/deliver/#use-in-a-fastfile

    To select a previously uploaded build and submit it for review run from command line:

    fastlane deliver submit_build --build_number 830