Compare commits
2 commits
57b366153a
...
952f4f93e0
Author | SHA1 | Date | |
---|---|---|---|
|
952f4f93e0 | ||
|
dc0807013f |
1 changed files with 19 additions and 17 deletions
36
.github/workflows/publish.yml
vendored
36
.github/workflows/publish.yml
vendored
|
@ -4,7 +4,8 @@ on:
|
||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
publish:
|
publish:
|
||||||
runs-on: ubuntu-latest
|
runs-on: docker
|
||||||
|
container: ghcr.io/catthehacker/ubuntu:full-latest
|
||||||
permissions:
|
permissions:
|
||||||
actions: read
|
actions: read
|
||||||
contents: read
|
contents: read
|
||||||
|
@ -14,15 +15,16 @@ jobs:
|
||||||
uses: actions/checkout@v4
|
uses: actions/checkout@v4
|
||||||
|
|
||||||
- name: Download Signed AAB
|
- name: Download Signed AAB
|
||||||
uses: dawidd6/action-download-artifact@v2
|
uses: https://github.com/dawidd6/action-download-artifact@v2
|
||||||
with:
|
with:
|
||||||
workflow: main.yml
|
workflow: main.yml
|
||||||
workflow_conclusion: success
|
workflow_conclusion: success
|
||||||
name: signed-aab
|
name: signed-aab
|
||||||
path: ./release
|
path: ./release
|
||||||
|
|
||||||
|
|
||||||
- name: Download Debug Symbols
|
- name: Download Debug Symbols
|
||||||
uses: dawidd6/action-download-artifact@v2
|
uses: download-artifact@v3
|
||||||
with:
|
with:
|
||||||
workflow: main.yml
|
workflow: main.yml
|
||||||
workflow_conclusion: success
|
workflow_conclusion: success
|
||||||
|
@ -35,19 +37,19 @@ jobs:
|
||||||
cp whatsnew.txt ./release/whatsnew/whatsnew-en-US
|
cp whatsnew.txt ./release/whatsnew/whatsnew-en-US
|
||||||
|
|
||||||
- name: List Downloaded Files
|
- name: List Downloaded Files
|
||||||
run: ls -l ./release/symbols
|
run: ls -laR ./release
|
||||||
|
|
||||||
- name: Create service_account.json
|
# - name: Create service_account.json
|
||||||
run: echo '${{ secrets.SERVICE_ACCOUNT_JSON }}' > service_account.json
|
# run: echo '${{ secrets.SERVICE_ACCOUNT_JSON }}' > service_account.json
|
||||||
|
#
|
||||||
- name: Deploy to Google Play
|
# - name: Deploy to Google Play
|
||||||
uses: r0adkll/upload-google-play@v1
|
# uses: https://github.com/r0adkll/upload-google-play@v1
|
||||||
with:
|
# with:
|
||||||
serviceAccountJson: service_account.json
|
# serviceAccountJson: service_account.json
|
||||||
packageName: org.askartv.tv
|
# packageName: org.askartv.tv
|
||||||
releaseFiles: "./release/*.aab"
|
# releaseFiles: "./release/*.aab"
|
||||||
debugSymbols: "./release/symbols"
|
# debugSymbols: "./release/symbols"
|
||||||
track: production
|
# track: production
|
||||||
status: completed
|
# status: completed
|
||||||
whatsNewDirectory: ./release/whatsnew
|
# whatsNewDirectory: ./release/whatsnew
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue