File tree 1 file changed +8
-8
lines changed
1 file changed +8
-8
lines changed Original file line number Diff line number Diff line change 9
9
jobs :
10
10
build :
11
11
runs-on : ubuntu-latest
12
- strategy :
13
- matrix :
14
- java : ["17", "21"]
15
- name : Java ${{ matrix.java }} Build
12
+ name : Java Build
16
13
steps :
17
14
- uses : actions/checkout@v4
18
15
19
- - name : Setup Java ${{ matrix.java }}
16
+ - name : Setup Java
20
17
uses : actions/setup-java@v4
21
18
with :
22
19
distribution : " temurin"
23
- java-version : ${{ matrix.java }}
20
+ java-version : 21
24
21
- name : Setup Gradle
25
22
uses : gradle/actions/setup-gradle@v4
26
23
27
24
- name : <>-- Build --<>
28
- run : ./gradlew build createExe --no-daemon
25
+ run : ./gradlew build
26
+
27
+ - name : <>-- Create Windows Executables --<>
28
+ run : ./gradlew createExe
29
29
30
30
- name : <>-- Assemble --<>
31
- run : ./gradlew assembleGithubArtifacts --no-daemon
31
+ run : ./gradlew assembleGithubArtifacts
32
32
33
33
- uses : actions/upload-artifact@v4
34
34
with :
You can’t perform that action at this time.
0 commit comments