diff --git a/.github/workflows/ant.yml b/.github/workflows/ant.yml index 06fc807..4cf0b1d 100644 --- a/.github/workflows/ant.yml +++ b/.github/workflows/ant.yml @@ -1,6 +1,3 @@ -# This workflow will build a Java project with Ant -# For more information see: https://docs.github.com/en/actions/automating-builds-and-tests/building-and-testing-java-with-ant - name: Java CI on: @@ -16,10 +13,12 @@ jobs: steps: - uses: actions/checkout@v4 - - name: Set up JDK 11 + - name: Set up JDK 17 uses: actions/setup-java@v4 with: - java-version: '11' + java-version: '17' distribution: 'temurin' - - name: Build with Ant - run: ant -noinput -buildfile build.xml + - name: Build with Gradle + run: | + chmod +x ./gradlew + ./gradlew --no-daemon assembleDebug