fix(release): update track names for Google Play promotion (#3338)

This commit is contained in:
James Rich 2025-10-04 14:20:15 -05:00 committed by GitHub
parent 0f8bd84ecb
commit 54f7d9ecdf
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
2 changed files with 2 additions and 3 deletions

View file

@ -259,7 +259,6 @@ jobs:
github-release:
runs-on: ubuntu-latest
needs: [prepare-build-info, release-google, release-fdroid]
environment: Release
steps:
- name: Download all artifacts
uses: actions/download-artifact@v5

View file

@ -53,7 +53,7 @@ platform :android do
desc "Promote from closed track to the open track on Google Play"
lane :open do
upload_to_play_store(
track: 'NewAlpha',
track: 'internal',
track_promote_to: 'beta',
release_status: 'draft',
skip_upload_apk: true,
@ -67,7 +67,7 @@ platform :android do
desc "Promote from open track to the production track on Google Play"
lane :production do
upload_to_play_store(
track: 'open',
track: 'internal',
track_promote_to: 'production',
release_status: 'draft',
skip_upload_apk: true,