Skip to content

Commit 08c9eae

Browse files
authored
Merge pull request #10 from Tellinq/multi-version
Multi-Version V1: Add required Java versions in accordance to each Minecraft version
2 parents c1a6d5b + c1454c7 commit 08c9eae

File tree

1 file changed

+7
-3
lines changed

1 file changed

+7
-3
lines changed

.github/workflows/build.yml

Lines changed: 7 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -23,11 +23,15 @@ jobs:
2323
with:
2424
fetch-depth: 10
2525

26-
- name: Set up JDK 17
26+
- name: Set up JDK 8, 16, 17, 21
2727
uses: actions/setup-java@v4
2828
with:
29-
java-version: 21
3029
distribution: temurin
30+
java-version: |
31+
8
32+
16
33+
17
34+
21
3135
3236
- uses: actions/cache@v4
3337
with:
@@ -44,4 +48,4 @@ jobs:
4448
run: chmod +x ./gradlew
4549

4650
- name: Build
47-
run: ./gradlew build --no-daemon
51+
run: ./gradlew build --no-daemon

0 commit comments

Comments
 (0)