We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d517180 commit 6ec7594Copy full SHA for 6ec7594
.github/workflows/ci-for-test.yml
@@ -12,8 +12,12 @@ jobs:
12
- name: Check out Repository
13
uses: actions/[email protected]
14
15
- - name: Create google-services.json
16
- run: echo '{}' > app/google-services.json
+ - name: Create Google Services JSON File
+ env:
17
+ GOOGLE_SERVICES_JSON: ${{ secrets.GOOGLE_SERVICES_JSON }}
18
+ run: |
19
+ echo "$GOOGLE_SERVICES_JSON" > google-services.json.b64
20
+ base64 -d -i google-services.json.b64 > ./app/google-services.json
21
22
- name: Create local.properties file
23
run: touch local.properties
0 commit comments