Skip to content

Commit

Permalink
Update Github Action to use Azul Zulu JDK with JavaFX packaged
Browse files Browse the repository at this point in the history
  • Loading branch information
patrickfav authored Aug 5, 2023
1 parent 7d9af8d commit c2b2cf6
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions .github/workflows/build_deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,8 @@ jobs:
uses: actions/setup-java@v3
with:
java-version: '11'
distribution: 'temurin'
distribution: 'zulu'
java-package: jdk+fx # optional (jdk, jre, jdk+fx or jre+fx) - defaults to jdk
- name: Build with Maven
run: ./mvnw -B clean verify -DcommonConfig.jarSign.skip=true
- name: Analyze with SonaQube
Expand All @@ -63,7 +64,8 @@ jobs:
uses: actions/setup-java@v3
with:
java-version: '11'
distribution: 'temurin'
distribution: 'zulu'
java-package: jdk+fx # optional (jdk, jre, jdk+fx or jre+fx) - defaults to jdk
- name: Build with Maven
run: ./mvnw -B verify -DskipTests
- name: Create and upload Github Release
Expand Down

0 comments on commit c2b2cf6

Please sign in to comment.