mirror of
https://github.com/alacritty/alacritty.git
synced 2024-11-18 13:55:23 -05:00
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.
This commit is contained in:
parent
889a326738
commit
126955d79b
1 changed files with 3 additions and 3 deletions
6
.github/workflows/release.yml
vendored
6
.github/workflows/release.yml
vendored
|
@ -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
|
||||
|
|
Loading…
Reference in a new issue