Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Publish Android build to Google Play | |
on: | |
# Enable manual run | |
workflow_dispatch: | |
# Build & deploy for published releases | |
release: | |
types: | |
- published | |
env: | |
appname-without-spaces: "UnitBargainHunter" | |
packageName: "codes.merritt.bargain" | |
repository: "merrit/unit_bargain_hunter" | |
repositoryUrl: https://github.com/Merrit/unit_bargain_hunter | |
jobs: | |
release: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Download .aab artifact | |
run: wget ${{env.repositoryUrl}}/releases/latest/download/${{env.appname-without-spaces}}-Android.aab | |
# Works with the r0adkll/upload-google-play action. | |
- name: Download changelog | |
run: | | |
mkdir whatsNewDirectory | |
gh release view --json body --jq .body --repo ${{env.repository}} >> whatsNewDirectory/whatsnew-en-US | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
- name: Access Google Play API key | |
env: | |
GOOGLE_PLAY_API_JSON: ${{ secrets.GOOGLE_PLAY_API_JSON }} | |
run: echo "$GOOGLE_PLAY_API_JSON" | base64 --decode > google_play_api.json | |
- name: Release Android build on Google Play | |
uses: r0adkll/upload-google-play@v1 | |
with: | |
serviceAccountJson: google_play_api.json | |
packageName: ${{env.packageName}} | |
releaseFiles: ${{env.appname-without-spaces}}-Android.aab | |
track: production |