mirror of
https://github.com/gabehf/Fladder.git
synced 2026-03-07 21:48:14 -08:00
chore: Upload nightly builds to internal test track
This commit is contained in:
parent
a10d4aac08
commit
71aa4cec54
1 changed files with 22 additions and 0 deletions
22
.github/workflows/build.yml
vendored
22
.github/workflows/build.yml
vendored
|
|
@ -662,6 +662,28 @@ jobs:
|
|||
env:
|
||||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
||||
|
||||
release_play_console:
|
||||
name: Upload AAB to Google Play Console
|
||||
needs:
|
||||
- fetch-info
|
||||
- create_release
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- name: Download Android Artifact
|
||||
uses: actions/download-artifact@v4
|
||||
with:
|
||||
name: fladder-android
|
||||
path: fladder-android
|
||||
|
||||
- name: Upload AAB to Google Play Console
|
||||
uses: r0adkll/upload-google-play@v1.1.3
|
||||
with:
|
||||
serviceAccountJsonPlainText: ${{ SERVICE_ACCOUNT_JSON }}
|
||||
packageName: "nl.jknaapen.fladder"
|
||||
releaseFiles: "fladder-android/${{ needs.build-android.outputs.artifact_suffix }}.aab"
|
||||
track: ${{ needs.fetch-info.outputs.build_type == 'nightly' && 'qa' || 'production' }}
|
||||
status: ${{ needs.fetch-info.outputs.build_type == 'nightly' && 'completed' || 'draft' }}
|
||||
|
||||
release_web:
|
||||
name: Release Web
|
||||
needs:
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue