We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5383c2b commit 16d0338Copy full SHA for 16d0338
1 file changed
.github/workflows/release.yml
@@ -119,6 +119,18 @@ jobs:
119
if: runner.os == 'macOS'
120
run: brew install create-dmg
121
122
+ - name: Install Windows packaging tools
123
+ if: runner.os == 'Windows'
124
+ shell: pwsh
125
+ run: |
126
+ choco install nsis --no-progress -y
127
+ $nsisDir = "${env:ProgramFiles(x86)}\NSIS"
128
+ if (-not (Test-Path "$nsisDir\\makensis.exe")) {
129
+ throw "makensis not found at $nsisDir"
130
+ }
131
+ $nsisDir | Out-File -FilePath $env:GITHUB_PATH -Encoding utf8 -Append
132
+ & "$nsisDir\\makensis.exe" /VERSION
133
+
134
- name: Prepare macOS signing materials
135
136
env:
0 commit comments