Fix action #7

Merged
quentinlegot merged 15 commits from dev into master 2023-03-21 09:35:10 +01:00
Showing only changes of commit 50070aeddf - Show all commits

View File

@ -10,10 +10,6 @@ jobs:
build:
strategy:
matrix:
# Use these Java versions
java: [
17, # Current Java LTS & minimum supported by Minecraft
]
# and run on both Linux and Windows
os: [ubuntu-latest, windows-2022]
runs-on: ${{ matrix.os }}
@ -22,10 +18,10 @@ jobs:
uses: actions/checkout@v3
- name: validate gradle wrapper
uses: https://github.com/gradle/wrapper-validation-action@v1
- name: setup jdk ${{ matrix.java }}
- name: setup jdk 17
uses: https://github.com/actions/setup-java@v3
with:
java-version: ${{ matrix.java }}
java-version: 17
- name: make gradle wrapper executable
if: ${{ runner.os != 'Windows' }}
run: chmod +x ./gradlew