Compare commits

...

2 commits

Author SHA1 Message Date
nomadics9
952f4f93e0 testing 2025-01-04 16:29:40 +03:00
nomadics9
dc0807013f testing 2025-01-04 16:25:49 +03:00

View file

@ -4,7 +4,8 @@ on:
jobs:
publish:
runs-on: ubuntu-latest
runs-on: docker
container: ghcr.io/catthehacker/ubuntu:full-latest
permissions:
actions: read
contents: read
@ -14,15 +15,16 @@ jobs:
uses: actions/checkout@v4
- name: Download Signed AAB
uses: dawidd6/action-download-artifact@v2
uses: https://github.com/dawidd6/action-download-artifact@v2
with:
workflow: main.yml
workflow_conclusion: success
name: signed-aab
path: ./release
- name: Download Debug Symbols
uses: dawidd6/action-download-artifact@v2
uses: download-artifact@v3
with:
workflow: main.yml
workflow_conclusion: success
@ -35,19 +37,19 @@ jobs:
cp whatsnew.txt ./release/whatsnew/whatsnew-en-US
- name: List Downloaded Files
run: ls -l ./release/symbols
run: ls -laR ./release
- name: Create service_account.json
run: echo '${{ secrets.SERVICE_ACCOUNT_JSON }}' > service_account.json
- name: Deploy to Google Play
uses: r0adkll/upload-google-play@v1
with:
serviceAccountJson: service_account.json
packageName: org.askartv.tv
releaseFiles: "./release/*.aab"
debugSymbols: "./release/symbols"
track: production
status: completed
whatsNewDirectory: ./release/whatsnew
# - name: Create service_account.json
# run: echo '${{ secrets.SERVICE_ACCOUNT_JSON }}' > service_account.json
#
# - name: Deploy to Google Play
# uses: https://github.com/r0adkll/upload-google-play@v1
# with:
# serviceAccountJson: service_account.json
# packageName: org.askartv.tv
# releaseFiles: "./release/*.aab"
# debugSymbols: "./release/symbols"
# track: production
# status: completed
# whatsNewDirectory: ./release/whatsnew