This commit is contained in:
nomadics9 2024-12-16 05:39:24 +03:00
parent 7edfb44938
commit b5b96a092d

View file

@ -36,21 +36,15 @@ jobs:
- name: List Downloaded Files
run: ls -l ./release
- name: Read What's New Message
id: read_whatsnew
- name: Debug Service Account JSON
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
echo "Checking Service Account JSON..."
echo "${{ secrets.SERVICE_ACCOUNT_JSON }}" | head -c 50
- name: Deploy to Google Play
uses: r0adkll/upload-google-play@v1.1.3
with:
serviceAccountJsonPlainText: ${{ SERVICE_ACCOUNT_JSON }}
serviceAccountJsonPlainText: ${{ secrets.SERVICE_ACCOUNT_JSON }}
packageName: "org.askartv.tv"
releaseFiles: "./release/*.aab"
debugSymbols: "./release/symbols"