From f0d1fba1776dbc85548e3e3228f13a7654dad808 Mon Sep 17 00:00:00 2001 From: Jakub Panek Date: Wed, 17 Apr 2024 22:33:01 +0200 Subject: [PATCH] fix: use pre-installed wix (#3172) --- .github/workflows/release.yml | 8 +++----- 1 file changed, 3 insertions(+), 5 deletions(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index c37c555c..76758b80 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -70,14 +70,12 @@ jobs: - name: Build run: cargo build --frozen --profile release-lto - - name: Install WiX - run: nuget install WiX -Version 3.14.1 - - name: Crate msi installer run: | - ./WiX.*/tools/candle.exe -arch "x64" -ext WixUIExtension -ext WixUtilExtension \ + candle.exe -arch "x64" -ext WixUIExtension -ext WixUtilExtension \ -out "./lapce.wixobj" "extra/windows/wix/lapce.wxs" - ./WiX.*/tools/light.exe -ext WixUIExtension -ext WixUtilExtension \ + + light.exe -ext WixUIExtension -ext WixUtilExtension \ -out "./Lapce-windows.msi" -sice:ICE61 -sice:ICE91 \ "./lapce.wixobj"