Skip to content

windows distr

windows distr #20

Workflow file for this run

name: Release
on:
push:
tags:
- 'v*'
jobs:
Windows:
runs-on: windows-2019
steps:
- uses: actions/checkout@v4
- uses: actions/setup-java@v4
with:
java-version: '17'
distribution: 'temurin'
architecture: x64
- run: |
./mvnw clean package --batch-mode --no-transfer-progress
- run: |
%JAVA_HOME%\bin\jpackage.exe @target\jpackage-win.args --type exe
shell: cmd