ci(release): correct case for 'NewAlpha' track in Play Store promotion (#3345)

This commit is contained in:
James Rich 2025-10-04 18:05:20 -05:00 committed by GitHub
parent d56e9f3ff6
commit 6fc23bc988
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -89,7 +89,7 @@ jobs:
service-account-json-raw: ${{ secrets.GOOGLE_PLAY_JSON_KEY }}
package-name: 'com.geeksville.mesh'
from-track: 'internal'
to-track: ${{ inputs.channel == 'closed' && 'newAlpha' || (inputs.channel == 'open' && 'beta' || 'production') }}
to-track: ${{ inputs.channel == 'closed' && 'NewAlpha' || (inputs.channel == 'open' && 'beta' || 'production') }}
update-github-release:
runs-on: ubuntu-latest