42 lines
1,004 B
YAML
42 lines
1,004 B
YAML
name: Publish to Google Play
|
|
on:
|
|
workflow_dispatch:
|
|
|
|
jobs:
|
|
publish:
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
- name: Checkout Repository
|
|
uses: actions/checkout@v4
|
|
|
|
- name: Download Signed AAB
|
|
uses: actions/download-artifact@v2
|
|
with:
|
|
name: signed-aab
|
|
path: ./release
|
|
|
|
- name: List Downloaded Files
|
|
run: ls -l ./release
|
|
|
|
- name: Read What's New Message
|
|
id: read_whatsnew
|
|
run: |
|
|
if [[ -f whatsnew.txt ]]; then
|
|
WHATS_NEW=$(cat whatsnew.txt)
|
|
else
|
|
echo "Error: whatsnew.txt not found!"
|
|
exit 1
|
|
fi
|
|
echo "WHATS_NEW=$WHATS_NEW" >> $GITHUB_ENV
|
|
|
|
- name: Deploy to Google Play
|
|
uses: r0adkll/upload-google-play@v1
|
|
with:
|
|
serviceAccountJson: ${{ secrets.SERVICE_ACCOUNT_JSON }}
|
|
packageName: "org.askartv.tv"
|
|
releaseFiles: "./release/*"
|
|
track: "production"
|
|
releaseStatus: "completed"
|
|
whatsNewDirectory: ${{ env.WHATS_NEW }}
|
|
|