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

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