Skip to content

Commit 40ef7ab

Browse files
Create google-services.json in CI workflow
Add step to create google-services.json from secret
1 parent 16aaa58 commit 40ef7ab

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

.github/workflows/android-lint.yml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,10 @@ jobs:
2121
java-version: '17'
2222
distribution: 'temurin'
2323
cache: gradle
24+
25+
- name: Create google-services.json
26+
run: |
27+
echo "${{ secrets.GOOGLE_SERVICES_JSON_BASE64 }}" | base64 --decode > app/google-services.json
2428
2529
- name: Run Lint
2630
run: ./gradlew lint

0 commit comments

Comments
 (0)