diff options
author | Christian Duerr <contact@christianduerr.com> | 2024-03-24 05:00:41 +0100 |
---|---|---|
committer | Josh Rahm <rahm@google.com> | 2024-08-14 15:41:13 -0600 |
commit | cc75cdc9549fd58a28c9f7ec4d8125d1349a1f27 (patch) | |
tree | 3ccbd3e20b2b9509fc311097d111f9347d915cce | |
parent | 70a2fb29fa2e332f4d183d8b94b92c75e841325e (diff) | |
download | r-alacritty-cc75cdc9549fd58a28c9f7ec4d8125d1349a1f27.tar.gz r-alacritty-cc75cdc9549fd58a28c9f7ec4d8125d1349a1f27.tar.bz2 r-alacritty-cc75cdc9549fd58a28c9f7ec4d8125d1349a1f27.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 |