From 1541961a2845abf47ca1cf3413bfb4ab0e17eee9 Mon Sep 17 00:00:00 2001 From: Juan Gilsanz Polo Date: Sun, 28 May 2023 02:00:26 +0200 Subject: [PATCH] Added release to google play --- .github/workflows/release.yaml | 21 ++++++++++++++++++++- 1 file changed, 20 insertions(+), 1 deletion(-) diff --git a/.github/workflows/release.yaml b/.github/workflows/release.yaml index 8491f55..12ff4b6 100644 --- a/.github/workflows/release.yaml +++ b/.github/workflows/release.yaml @@ -201,4 +201,23 @@ jobs: name: v${{ github.event.inputs.version }} draft: true prerelease: false - commit: ${{ github.sha }} \ No newline at end of file + 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 }} \ No newline at end of file