diff options
author | Christian Duerr <contact@christianduerr.com> | 2024-03-24 05:00:41 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-03-24 04:00:41 +0000 |
commit | cef95324c9e2572a50e2d2334cbe2ba3641a12a8 (patch) | |
tree | be3dc8f0d92514bdb590d0043938672a5c1bc73d | |
parent | fd1a3cc79192d1d03839f0fd8c72e1f8d0fce42e (diff) | |
download | alacritty-cef95324c9e2572a50e2d2334cbe2ba3641a12a8.tar.gz alacritty-cef95324c9e2572a50e2d2334cbe2ba3641a12a8.zip |
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.yml | 6 |
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 |