Workflow configurations to automatically publish the app after it has been approved #2873
-
If you are looking for help, please confirm the following...
Which mobile framework are you using?React Native Steps to reproduceProbably a simple thing I'm missing, but I'm having a hard time getting it from the docs. How can I configure my Android and iOS workflow, so that if the app is approved on Google Play and App Store, it is automatically published, and I don't have to manually publish the app? I think for iOS, under Expected resultsApp is automatically published after it has been approved. Actual resultsI have to publish app after it has been approved Build id (optional)No response |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 2 replies
-
Hello @MbuthiaWaKihara, |
Beta Was this translation helpful? Give feedback.
Hello @MbuthiaWaKihara,
Yes, that's correct,
release_type
parameter underapp_store_connect
in the publish section helps with this. For iOS publishing, you can check out more details here. Settingrelease_type: AFTER_APPROVAL
means the app is automatically released once Apple approves it. Also, make sure thesubmit_to_app_store
flag is set to true to send the app for review.release_promotion
works in the case of Google Play publishing. You can check out more details here.