We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b1654dd commit 4a043bbCopy full SHA for 4a043bb
1 file changed
.github/workflows/build.yml
@@ -19,9 +19,22 @@ jobs:
19
with:
20
java-version: '21'
21
distribution: 'temurin'
22
+ cache: 'gradle'
23
24
+ - name: Cache Minecraft/Loom
25
+ uses: actions/cache@v4
26
+ with:
27
+ path: |
28
+ ~/.gradle/caches/fabric-loom
29
+ ~/.gradle/loom-cache
30
+ key: ${{ runner.os }}-loom-${{ hashFiles('**/gradle.properties') }}
31
+ restore-keys: |
32
+ ${{ runner.os }}-loom-
33
+
34
- name: Setup Gradle
35
uses: gradle/actions/setup-gradle@v3
36
37
+ cache-read-only: false
38
39
- name: Make gradlew executable
40
run: chmod +x ./gradlew
0 commit comments