We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent cec747d commit c23e0d7Copy full SHA for c23e0d7
.github/workflows/android-ci.yml
@@ -51,13 +51,12 @@ jobs:
51
run: |
52
echo "dev_base_url=$DEV_BASE_URL" >> local.properties
53
echo "prod_base_url=$PROD_BASE_URL" >> local.properties
54
-
+
55
- name: Create google-services.json
56
env:
57
- GOOGLE_SERVICES_JSON_DEBUG: ${{ secrets.GOOGLE_SERVICES_JSON_DEBUG }}
+ GOOGLE_SERVICES_JSON: ${{ secrets.GOOGLE_SERVICES_JSON_DEBUG }}
58
59
- mkdir -p ./app/src/debug
60
- echo "${GOOGLE_SERVICES_JSON_DEBUG}" > ./app/src/debug/google-services.json
+ echo "$GOOGLE_SERVICES_JSON" > app/google-services.json
61
62
- name: Clean Project
63
run: ./gradlew clean
0 commit comments