Feat: produce an .msi for windows CI

This commit is contained in:
2026-02-28 03:33:54 +01:00
parent 81fb174d7e
commit ca08074686
4 changed files with 190 additions and 0 deletions

View File

@@ -322,6 +322,13 @@ copy_artifacts() {
fi
fi
# MSI installer for Windows targets
if [[ "$os" == "windows" ]] && command -v cargo-wix &>/dev/null; then
echo " Building MSI installer..."
cargo wix --no-build --nocapture -C -p -C x64
cp target/wix/*.msi "$OUT/" 2>/dev/null && echo " MSI -> $OUT/" || true
fi
# AppImage for Linux targets
if [[ "$os" == "linux" ]]; then
if $build_cagire; then