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 241381e commit 7dcedf3Copy full SHA for 7dcedf3
.github/workflows/android-ci.yml
@@ -59,9 +59,15 @@ jobs:
59
- name: Check out code
60
uses: actions/checkout@v5
61
62
+ - name: Generate local.properties
63
+ run: echo '${{ secrets.LOCAL_PROPERTIES }}' | base64 -d > ./local.properties
64
+
65
- name: Generate keystore.properties
66
run: echo '${{ secrets.KEYSTORE_PROPERTIES }}' | base64 -d > ./keystore.properties
67
68
+ - name: Generate google-services.json
69
+ run: echo '${{ secrets.GOOGLE_SERVICES }}' | base64 -d > ./app/google-services.json
70
71
- name: Set up JDK
72
uses: actions/setup-java@v5
73
with:
0 commit comments