We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 10b0950 commit 2b09d81Copy full SHA for 2b09d81
.github/workflows/build-and-release.yml
@@ -31,3 +31,31 @@ jobs:
31
path: |
32
build/libs/*.jar
33
build/libs/*.war
34
+
35
+ build-exe:
36
+ runs-on: windows-latest
37
+ needs: build-artifacts
38
+ steps:
39
+ - name: Checkout repository
40
+ uses: actions/checkout@v4
41
42
+ - name: Set up JDK
43
+ uses: actions/setup-java@v3
44
+ with:
45
+ distribution: 'temurin'
46
+ java-version: '21'
47
48
+ - name: Install WiX Toolset
49
+ run: choco install wix --yes
50
51
+ - name: Set up Gradle
52
+ uses: gradle/gradle-build-action@v2
53
54
+ - name: Run createEXE task
55
+ run: ./gradlew createEXE
56
57
+ - name: Upload EXE Installer
58
+ uses: actions/upload-artifact@v4
59
60
+ name: windows-installer
61
+ path: build/**/*.exe
0 commit comments