diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml index 18c3284..5b90633 100644 --- a/.github/workflows/publish.yml +++ b/.github/workflows/publish.yml @@ -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"