We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4f958f9 commit 5614592Copy full SHA for 5614592
.github/workflows/build.yml
@@ -64,8 +64,6 @@ jobs:
64
uses: subosito/flutter-action@v2
65
with:
66
cache: true
67
- cache-key: ${{ runner.os }}-flutter
68
- pub-cache-key: ${{ runner.os }}-flutter-pub
69
70
- name: Install Java
71
if: matrix.name == 'android'
@@ -86,7 +84,9 @@ jobs:
86
84
~/.gradle/caches
87
85
~/.gradle/wrapper
88
android/.gradle
89
- key: ${{ runner.os }}-gradle
+ key: ${{ runner.os }}-gradle-${{ hashFiles('**/*.gradle*', '**/gradle-wrapper.properties') }}
+ restore-keys: |
+ ${{ runner.os }}-gradle-
90
91
- name: Cache NDK
92
0 commit comments