Added release to google play

This commit is contained in:
Juan Gilsanz Polo 2023-05-28 02:00:26 +02:00
parent c3253559a6
commit 1541961a28

View file

@ -201,4 +201,23 @@ jobs:
name: v${{ github.event.inputs.version }}
draft: true
prerelease: false
commit: ${{ github.sha }}
commit: ${{ github.sha }}
release-build-google-play:
name: Release Android build to the Google Play Store
runs-on: ubuntu-latest
needs: [build-android]
steps:
- uses: actions/checkout@v3
- name: Download Android artifacts
uses: actions/download-artifact@v3
with:
name: android
- name: Release app to Google Play
uses: r0adkll/upload-google-play@v1
with:
serviceAccountJsonPlainText: ${{ secrets.PLAYSTORE_ACCOUNT_KEY }}
packageName: com.jgeek00.adguard_home_manager
releaseFiles: AdGuardHomeManager_${{ github.event.inputs.version }}_Android.aab
track: production
status: draft
releaseName: ${{ github.event.inputs.version }}