workflow
This commit is contained in:
parent
7edfb44938
commit
b5b96a092d
1 changed files with 4 additions and 10 deletions
14
.github/workflows/publish.yml
vendored
14
.github/workflows/publish.yml
vendored
|
@ -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"
|
||||
|
|
Loading…
Reference in a new issue