Skip to content

Commit

Permalink
ci(actions): change the quoting for the google-services.json extract
Browse files Browse the repository at this point in the history
  • Loading branch information
trajano committed Nov 9, 2024
1 parent e1fb0cf commit 8213719
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 4 deletions.
3 changes: 1 addition & 2 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -53,8 +53,7 @@ jobs:
restore-keys: |
${{ runner.os }}-node-modules-
- name: Write google-services.json
run: |
echo "${{ secrets.GOOGLE_SERVICES_JSON }}" > ./google-services.json
run: 'echo "${{ secrets.GOOGLE_SERVICES_JSON }}" > ./google-services.json'
env:
GOOGLE_SERVICES_JSON: ${{ secrets.GOOGLE_SERVICES_JSON }}
- name: Install dependencies
Expand Down
3 changes: 1 addition & 2 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,8 +24,7 @@ jobs:
run: npm install
- run: volta install eas-cli@latest
- name: Write google-services.json
run: |
echo "${{ secrets.GOOGLE_SERVICES_JSON }}" > ./google-services.json
run: 'echo "${{ secrets.GOOGLE_SERVICES_JSON }}" > ./google-services.json'
env:
GOOGLE_SERVICES_JSON: ${{ secrets.GOOGLE_SERVICES_JSON }}
- run: ./eas-local-update.sh
Expand Down

0 comments on commit 8213719

Please sign in to comment.