-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add double quote to $GOOGLE_SERVICES_JSON.
- Loading branch information
1 parent
d6a9c4a
commit 181343c
Showing
1 changed file
with
2 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -42,7 +42,7 @@ jobs: | |
- name: Add google-services.json | ||
env: | ||
GOOGLE_SERVICES_JSON: ${{ secrets.GOOGLE_SERVICES_JSON }} | ||
run: echo $GOOGLE_SERVICES_JSON > app/google-services.json | ||
run: echo "$GOOGLE_SERVICES_JSON" > app/google-services.json | ||
|
||
- name: Prepare Android Environment | ||
uses: ./.github/actions/prepare-android-env | ||
|
@@ -79,7 +79,7 @@ jobs: | |
- name: Add google-services.json | ||
env: | ||
GOOGLE_SERVICES_JSON: ${{ secrets.GOOGLE_SERVICES_JSON }} | ||
run: echo $GOOGLE_SERVICES_JSON > app/google-services.json | ||
run: echo "$GOOGLE_SERVICES_JSON" > app/google-services.json | ||
|
||
- name: LFS-warning - Prevent large files that are not LFS tracked | ||
uses: ppremk/[email protected] | ||
|