From 46a1a58b10c6e1bf46236d7a15c2a4c8b548b32f Mon Sep 17 00:00:00 2001 From: Mohammed Rabil Date: Fri, 9 Feb 2024 02:53:11 +0530 Subject: [PATCH] Update google-services.json generation in build workflow --- .github/workflows/build.yml | 2 +- .github/workflows/notify.yml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index b4409d7..079c8cd 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -58,7 +58,7 @@ jobs: run: bun install - name: Create google-services.json - run: echo ${{ secrets.GOOGLE_SERVICES_JSON }} > google-services.json + run: echo "${{ secrets.GOOGLE_SERVICES_JSON }}" > google-services.json - name: Build Expo run: bun run build:android diff --git a/.github/workflows/notify.yml b/.github/workflows/notify.yml index 99946be..ead0a62 100644 --- a/.github/workflows/notify.yml +++ b/.github/workflows/notify.yml @@ -35,7 +35,7 @@ jobs: run: pip install -r push-notify/requirements.txt - name: Create google-auth json - run: echo ${{ secrets.GOOGLE_AUTH_JSON }} > google-services.json + run: echo "${{ secrets.GOOGLE_AUTH_JSON }}" > google-services.json - name: Run push notification script run: |