We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 37570ae commit a0bd909Copy full SHA for a0bd909
2 files changed
.github/workflows/build_snapshot.yml
@@ -27,6 +27,16 @@ jobs:
27
28
- name: Grant Execute Permission for gradlew
29
run: chmod +x ./gradlew
30
+ - name: Cache Gradle
31
+ uses: actions/cache@v3
32
+ with:
33
+ path:
34
+ ~/gradle/
35
+ ~/.gradle/
36
+ ~/build/
37
+ key: ${{hashFiles('build.gradle') }}-${{hashFiles('gradle.properties') }}
38
+ restore-keys: |
39
+ ${{hashFiles('build.gradle') }}-${{hashFiles('gradle.properties') }}
40
- name: Change mod version
41
run: sed -i "s/mod_version.*=.*/mod_version = snapshot-${{ github.run_number}}/g" gradle.properties
42
- name: Setup Java
gradle.properties
@@ -5,7 +5,7 @@
5
org.gradle.jvmargs = -Xmx3G
6
7
java_version = 21
8
-cleanroom_version=0.2.3-alpha
+cleanroom_version=0.2.4-alpha
9
10
# Mapping Properties
11
mapping_channel= stable
0 commit comments