We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 860f835 commit 575bcf1Copy full SHA for 575bcf1
1 file changed
.github/workflows/build-msi.yml
@@ -1,9 +1,6 @@
1
name: Release MSI
2
3
-on:
4
- push:
5
- tags:
6
- - '*'
+on: push
7
8
jobs:
9
build-winetd-msi:
@@ -18,7 +15,7 @@ jobs:
18
15
- name: Download WiX
19
16
run: curl -LS https://github.com/wixtoolset/wix3/releases/download/wix3111rtm/wix311.exe > $env:temp\wix311.exe
20
17
- name: Install WiX
21
- run: $env:temp\wix311.exe /install /quiet /norestart
+ run: '"$env:temp\wix311.exe" "/install" "/quiet" "/norestart"'
22
- name: Prepare MSI file
23
run: '"%PROGRAMFILES(x86)%\WiX Toolset v3.11\bin\candle.exe" "winetd.wxs"'
24
- name: Link MSI
0 commit comments