File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 5555 - name : Install WiX Toolset
5656 run : choco install wixtoolset -y
5757
58+ - name : Add WiX to PATH
59+ run : echo "$((Get-Item (Get-Command candle.exe).Source).Directory.FullName)" | Out-File -FilePath $env:GITHUB_PATH -Encoding utf8 -Append
60+ shell : pwsh
61+
5862 - name : Generate GUIDs and update WXS file
5963 shell : pwsh
6064 run : |
6670
6771 - name : Build MSI installer
6872 run : |
69- & "C:\Program Files (x86)\WiX ToolSet v3.11\bin\ candle.exe" -dSourceDir=. -out installer.wixobj installer/installer.wxs
70- & "C:\Program Files (x86)\WiX ToolSet v3.11\bin\ light.exe" -out stackmatch-${{ needs.build-executables.outputs.tag_name }}.msi installer.wixobj
73+ candle.exe -dSourceDir=. -out installer.wixobj installer/installer.wxs
74+ light.exe -out stackmatch-${{ needs.build-executables.outputs.tag_name }}.msi installer.wixobj
7175 shell : pwsh
7276
7377 - name : Upload MSI artifact
Original file line number Diff line number Diff line change 66 "github.com/spf13/cobra"
77)
88
9- const cliVersion = "0.2.8 " // Define the current version
9+ const cliVersion = "0.2.9 " // Define the current version
1010
1111var versionCmd = & cobra.Command {
1212 Use : "version" ,
You can’t perform that action at this time.
0 commit comments