A Minecraft server-side mod that adds various teleportation related commands
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

Update build.yml

+2 -3
+2 -3
.github/workflows/build.yml
··· 12 12 matrix: 13 13 # Use these Java versions 14 14 java: [ 15 - 17, # Current Java LTS & minimum supported by Minecraft 16 - 21, # Current Java LTS 15 + 21, # Currently min for minecraft 17 16 ] 18 17 runs-on: ubuntu-22.04 19 18 steps: ··· 25 24 uses: actions/setup-java@v4 26 25 with: 27 26 java-version: ${{ matrix.java }} 28 - distribution: 'microsoft' 27 + distribution: 'temurin' 29 28 - name: make gradle wrapper executable 30 29 run: chmod +x ./gradlew 31 30 - name: build