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 7ffd595 commit af4a91fCopy full SHA for af4a91f
.github/workflows/android.yml
@@ -17,6 +17,15 @@ jobs:
17
with:
18
java-version: 1.8
19
20
+ - uses: actions/cache@v2
21
+ with:
22
+ path: |
23
+ ~/.gradle/caches
24
+ ~/.gradle/wrapper
25
+ key: ${{ runner.os }}-gradle-${{ hashFiles('**/*.gradle*', '**/gradle-wrapper.properties') }}
26
+ restore-keys: |
27
+ ${{ runner.os }}-gradle-
28
+
29
- run: ./gradlew lint --stacktrace
30
31
apk:
@@ -31,6 +40,15 @@ jobs:
40
32
41
33
42
43
44
45
46
47
48
49
50
51
34
52
- run: echo ${{ secrets.SIGNING_STORE_FILE }} | base64 -d > app/release.keystore
35
53
36
54
- run: |
0 commit comments