summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorChristian Duerr <contact@christianduerr.com>2024-03-24 05:00:41 +0100
committerChristian Duerr <contact@christianduerr.com>2024-03-24 18:50:55 +0100
commit126955d79bd7fbe0fe95d382254f31c573756e0d (patch)
treeaaf716cb9498ab76ce08a954c8c79528d489b0f8
parent889a3267380e33530ab7a8590937fff3ff6b66d5 (diff)
Fix msi installer build
This works around an issue where wix was pulling pre-release extensions and thus breaking compatibility with our used wix version.
-rw-r--r--.github/workflows/release.yml6
1 files changed, 3 insertions, 3 deletions
diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml
index 17b2d1af..3918a540 100644
--- a/.github/workflows/release.yml
+++ b/.github/workflows/release.yml
@@ -48,10 +48,10 @@ jobs:
./.github/workflows/upload_asset.sh \
./Alacritty-${GITHUB_REF##*/}-portable.exe $GITHUB_TOKEN
- name: Install WiX
- run: dotnet tool install --global wix --version 4.0.1
- - name: Crate msi installer
+ run: dotnet tool install --global wix --version 4.0.5
+ - name: Create msi installer
run: |
- wix extension add WixToolset.UI.wixext WixToolset.Util.wixext
+ wix extension add WixToolset.UI.wixext/4.0.5 WixToolset.Util.wixext/4.0.5
wix build -arch "x64" -ext WixToolset.UI.wixext -ext WixToolset.Util.wixext \
-out "./Alacritty-${GITHUB_REF##*/}-installer.msi" "alacritty/windows/wix/alacritty.wxs"
- name: Upload msi installer