From 7dc88c808181045e7707136178ab6452bb6794cd Mon Sep 17 00:00:00 2001 From: nomadics9 Date: Mon, 16 Dec 2024 05:59:48 +0300 Subject: [PATCH] workflow --- .github/workflows/publish.yml | 8 +++----- 1 file changed, 3 insertions(+), 5 deletions(-) diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml index 5b90633..3b41010 100644 --- a/.github/workflows/publish.yml +++ b/.github/workflows/publish.yml @@ -36,15 +36,13 @@ jobs: - name: List Downloaded Files run: ls -l ./release - - name: Debug Service Account JSON - run: | - echo "Checking Service Account JSON..." - echo "${{ secrets.SERVICE_ACCOUNT_JSON }}" | head -c 50 + - name: Create service_account.json + run: echo '${{ secrets.SERVICE_ACCOUNT_JSON }}' > service_account.json - name: Deploy to Google Play uses: r0adkll/upload-google-play@v1.1.3 with: - serviceAccountJsonPlainText: ${{ secrets.SERVICE_ACCOUNT_JSON }} + serviceAccountJson: service_account.json packageName: "org.askartv.tv" releaseFiles: "./release/*.aab" debugSymbols: "./release/symbols"