We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6b69a50 commit 552cfc4Copy full SHA for 552cfc4
1 file changed
.github/workflows/build.yml
@@ -21,6 +21,16 @@ jobs:
21
distribution: 'temurin'
22
- name: make gradle wrapper executable
23
run: chmod +x ./gradlew
24
+ - name: Cache Gradle
25
+ id: cache-gradle
26
+ uses: actions/cache@v4
27
+ with:
28
+ path: |
29
+ ~/.gradle/caches
30
+ ${{ github.workspace }}/.gradle
31
+ key: ${{ runner.os }}-gradle-${{ github.sha }}
32
+ restore-keys:
33
+ ${{ runner.os }}-gradle-
34
- name: build
35
run: ./gradlew build
36
- name: capture build artifacts
0 commit comments