alaskartv-app/.github/workflows/publish.yml
2025-01-05 16:26:05 +03:00

52 lines
1.5 KiB
YAML

name: Publish AlaskarTV
on:
workflow_dispatch:
jobs:
publish:
runs-on: ubuntu-latest
container: ghcr.io/catthehacker/ubuntu:act-latest
steps:
- name: Get Artifacts from Latest Build
id: get-artifacts
run: |
LATEST_RUN=$(gh run list --workflow main.yml --json conclusion,createdAt,displayTitle,headSha --limit 1 | jq -r '.[0].id')
echo "run_id=$LATEST_RUN" >> $GITHUB_ENV
- name: Download Signed AAB
uses: actions/download-artifact@v3
with:
name: signed-aab
workflow-run-id: ${{ env.run_id }}
path: ./release
- name: Download Debug Symbols
uses: actions/download-artifact@v3
with:
name: debug-symbols
workflow-run-id: ${{ env.run_id }}
path: ./release/symbols
- name: Use What's New Message
run: |
mkdir ./release/whatsnew
cp whatsnew.txt ./release/whatsnew/whatsnew-en-US
- name: List Downloaded Files
run: ls -laR ./release
# - 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