Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add a github action to release artifacts at runtime #78

Closed
Prev Previous commit
Next Next commit
correct java versions
  • Loading branch information
devashish2024 committed Sep 15, 2024
commit 7377f2f7c3ba9b71865cba0555465b7fc7dc6521
10 changes: 1 addition & 9 deletions .github/workflows/produceJars.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,14 +15,6 @@ jobs:
strategy:
matrix:
minecraft-version: [ "1.19.3+build.5", "1.20+build.1", "1.21+build.2" ]
java-version: [ "17", "21" ]
exclude:
- minecraft-version: "1.19.3+build.5"
java-version: "21"
- minecraft-version: "1.20+build.1"
java-version: "21"
- minecraft-version: "1.21+build.2"
java-version: "17"

steps:
- name: Checkout code
Expand All @@ -32,7 +24,7 @@ jobs:
uses: actions/setup-java@v3
with:
distribution: 'temurin'
java-version: ${{ matrix.java-version }}
java-version: 21

- name: Grant execute permission for gradlew
run: chmod +x ./gradlew
Expand Down