From 0cdc814526fe1de376c199c7f32fa66a961fb6a7 Mon Sep 17 00:00:00 2001 From: Dmitri Date: Thu, 10 Oct 2024 00:34:56 +0300 Subject: [PATCH] Check json from secret --- .github/workflows/create-service-json.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/create-service-json.yml b/.github/workflows/create-service-json.yml index d02816e..7499073 100644 --- a/.github/workflows/create-service-json.yml +++ b/.github/workflows/create-service-json.yml @@ -13,8 +13,8 @@ jobs: - name: Create Google Service JSON run: | - echo "${{ secrets.GOOGLE_SERVICE_JSON }}" && - echo "${{ secrets.GOOGLE_SERVICE_JSON }}" > \ + echo '${{ secrets.GOOGLE_SERVICE_JSON }}' && + echo '${{ secrets.GOOGLE_SERVICE_JSON }}' > \ ${{ github.workspace }}/app/google-services.json | base64 - name: Check Google Service JSON file is created