This commit is contained in:
Stefan Schueller 2020-09-27 00:54:14 +02:00
parent 2ce3b41c1c
commit 578b5ddbb9
2 changed files with 3 additions and 3 deletions

0
ci-scripts/make-github-release.sh Normal file → Executable file
View File

View File

@ -41,17 +41,17 @@ platform :android do
desc "Promote Internal to Alpha"
lane :promote_internal_to_alpha do
upload_to_play_store(track: 'internal', track_promote_to: 'alpha')
upload_to_play_store(track: 'internal', track_promote_to: 'alpha', skip_upload_changelogs: true)
end
desc "Promote Alpha to Beta"
lane :promote_alpha_to_beta do
upload_to_play_store(track: 'alpha', track_promote_to: 'beta')
upload_to_play_store(track: 'alpha', track_promote_to: 'beta', skip_upload_changelogs: true)
end
desc "Promote Beta to Production"
lane :promote_beta_to_production do
upload_to_play_store(track: 'beta', track_promote_to: 'production')
upload_to_play_store(track: 'beta', track_promote_to: 'production', skip_upload_changelogs: true)
end
end