Skip to content

Commit 82613ea

Browse files
committed
build: fix nsis
1 parent 2d5dfc7 commit 82613ea

File tree

1 file changed

+10
-3
lines changed

1 file changed

+10
-3
lines changed

.github/workflows/release.yml

Lines changed: 10 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -28,9 +28,16 @@ jobs:
2828
uses: microsoft/setup-msbuild@v2
2929

3030
- name: Install NSIS
31-
uses: repolevedavaj/install-nsis@v1.0.1
32-
with:
33-
nsis-version: '3.11'
31+
run: |
32+
iwr -useb get.scoop.sh -outfile 'install.ps1'
33+
.\install.ps1 -RunAsAdmin
34+
scoop update
35+
scoop bucket add extras
36+
scoop install nsis
37+
echo "$env:USERPROFILE\scoop\shims" | Out-File -FilePath $env:GITHUB_PATH -Encoding utf8 -Append
38+
39+
- name: Print NSIS version
40+
run: makensis -VERSION
3441

3542
- name: Get version from tag
3643
id: get_version

0 commit comments

Comments
 (0)