Skip to content

Commit 3dbab3f

Browse files
committed
Windows Server runner needs NSIS to be installed.
1 parent 53364cf commit 3dbab3f

File tree

1 file changed

+3
-8
lines changed

1 file changed

+3
-8
lines changed

.github/workflows/on-demand-deployment.yaml

Lines changed: 3 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -151,16 +151,11 @@ jobs:
151151
uses: actions/setup-python@v5
152152
with:
153153
python-version: ${{ matrix.python-version }}
154-
- name: Download NSIS Installer
155-
if: runner.os == 'Windows'
156-
run: |
157-
Invoke-WebRequest -Uri "https://sourceforge.net/projects/nsis/files/NSIS%203/3.11/nsis-3.11-setup.exe/download" -OutFile "nsis-setup.exe"
158-
dir
159154
- name: Install NSIS
160155
if: runner.os == 'Windows'
161-
run: |
162-
dir
163-
Start-Process -FilePath ".\\nsis-setup.exe" -ArgumentList "/S" -Wait
156+
uses: repolevedavaj/[email protected]
157+
with:
158+
nsis-version: '3.11'
164159
- name: Verify NSIS Installation
165160
if: runner.os == 'Windows'
166161
run: |

0 commit comments

Comments
 (0)