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 23583ea commit d001f3eCopy full SHA for d001f3e
.github/workflows/ci.yml
@@ -23,6 +23,16 @@ jobs:
23
java-version: '17'
24
distribution: 'adopt'
25
26
+ - name: Cache gradle
27
+ uses: actions/cache@v4
28
+ with:
29
+ path: |
30
+ ~/.gradle/caches
31
+ ~/.gradle/wrapper
32
+ key: gradle-${{ runner.os }}-${{ hashFiles('**/*.gradle*', '**/gradle-wrapper.properties') }}
33
+ restore-keys: |
34
+ gradle-${{ runner.os }}-
35
+
36
- name: Decode google-services.json
37
run: echo "$GOOGLE_SERVICES_JSON_BASE64" | base64 -d > app/google-services.json
38
env:
0 commit comments