mirror of
https://github.com/JGeek00/adguard-home-manager.git
synced 2025-06-05 22:30:15 +00:00
Added release to google play
This commit is contained in:
parent
c3253559a6
commit
1541961a28
1 changed files with 20 additions and 1 deletions
19
.github/workflows/release.yaml
vendored
19
.github/workflows/release.yaml
vendored
|
@ -202,3 +202,22 @@ jobs:
|
||||||
draft: true
|
draft: true
|
||||||
prerelease: false
|
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 }}
|
Loading…
Add table
Add a link
Reference in a new issue