Skip to content

Commit aafd00e

Browse files
authored
Change GH Action JDK+FX Zulu to just the Temurin JDK (#681)
The Temurin JDK comes preinstalled on the Github-hosted Runners so it saves some time from installing. The FX libraries aren't used for building, but are rather only needed for the runtime, which is taken care of by bundling the standalone installers with the JRE+FX (Zulu) from Azul. (Not needed for build as the JFX libraries are provided by the JavaFX plugin and the dependencies from build.gradle
1 parent b65d0a3 commit aafd00e

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

.github/workflows/build.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -22,8 +22,8 @@ jobs:
2222
uses: actions/setup-java@v4
2323
with:
2424
java-version: '21'
25-
java-package: 'jdk+fx'
26-
distribution: 'zulu'
25+
java-package: 'jdk'
26+
distribution: 'temurin'
2727

2828
- name: Setup Gradle
2929
uses: gradle/actions/setup-gradle@v4
@@ -75,4 +75,4 @@ jobs:
7575
if: ${{ github.event_name == 'pull_request' }}
7676
uses: actions/upload-artifact@v4
7777
with:
78-
path: Quelea/dist/standalone/
78+
path: Quelea/dist/standalone/

0 commit comments

Comments
 (0)