You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This repository contains `packaging/jpackage.ps1` which will produce either:
4
+
5
+
- a Windows installer (EXE) if the WiX toolset is installed on the system, or
6
+
- an app-image ZIP (no installer) if WiX is not available.
7
+
8
+
Requirements (to build an EXE installer locally):
9
+
- JDK 21+ with `jpackage` on PATH
10
+
- WiX toolset (install via Chocolatey: `choco install wixtoolset -y` or download from https://wixtoolset.org)
11
+
- PowerShell (run as Administrator for WiX installation)
12
+
13
+
Build locally:
14
+
15
+
1. From repo root run (PowerShell):
16
+
17
+
.\packaging\jpackage.ps1
18
+
19
+
2. If WiX is installed the installer will be in `dist/installer/`.
20
+
Otherwise an app-image ZIP will be created at `dist/SmallTextPad-windows-appimage.zip`.
21
+
22
+
CI:
23
+
24
+
A GitHub Actions workflow `.github/workflows/windows-installer.yml` is provided to build the installer on a Windows runner and upload the produced artifacts.
0 commit comments