Skip to content
This repository was archived by the owner on Nov 28, 2025. It is now read-only.

Commit 65f676b

Browse files
committed
fix actions
1 parent 0fc0c32 commit 65f676b

File tree

5 files changed

+12
-7
lines changed

5 files changed

+12
-7
lines changed

.github/workflows/build.yml

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -14,11 +14,13 @@ jobs:
1414
distribution: "temurin"
1515
java-version: 21
1616

17-
- name: Build with Gradle
17+
- name: Setup Gradle
1818
uses: gradle/actions/setup-gradle@v4
1919
with:
20-
arguments: build
21-
cache-read-only: ${{ github.ref != 'refs/heads/multiversion' }}
20+
cache-read-only: ${{ github.ref != 'refs/heads/multiversion' }}
21+
22+
- name: Build
23+
run: ./gradlew build
2224

2325
- name: Upload a Build Artifact
2426
uses: actions/upload-artifact@v4

.github/workflows/release.yml

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,12 +25,14 @@ jobs:
2525
distribution: "temurin"
2626
java-version: 21
2727

28-
- name: Build with Gradle
28+
- name: Setup Gradle
2929
uses: gradle/actions/gradle-build@v4
3030
with:
31-
arguments: build
3231
cache-read-only: true
3332

33+
- name: Build
34+
run: ./gradlew build
35+
3436
- name: Release
3537
uses: Kir-Antipov/[email protected]
3638
with:

1.20/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -97,7 +97,7 @@ modrinth {
9797
versionType = "release"
9898
uploadFile = remapJar
9999
gameVersions.set(["${project.minecraft_120}"])
100-
loaders.set(["quilt"])
100+
loaders.set(["quilt", "fabric"])
101101
additionalFiles.set([remapSourcesJar])
102102

103103
// Changelog fetching: Credit LambdAurora.

1.21/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -97,7 +97,7 @@ modrinth {
9797
versionType = "release"
9898
uploadFile = remapJar
9999
gameVersions.set(["${project.minecraft_121}"])
100-
loaders.set(["quilt"])
100+
loaders.set(["quilt", "fabric"])
101101
additionalFiles.set([remapSourcesJar])
102102

103103
// Changelog fetching: Credit LambdAurora.

CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -165,3 +165,4 @@
165165
- Hypixel
166166
- rewrite DiscordRPC
167167
- 1.8.9 + 1.16_combat-6 now require java 17
168+
- rewritten config library

0 commit comments

Comments
 (0)