Skip to content

Commit

Permalink
Update google-services.json generation in build workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
rabilrbl committed Feb 8, 2024
1 parent 3d6e11b commit 46a1a58
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/notify.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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: |
Expand Down

0 comments on commit 46a1a58

Please sign in to comment.