We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2d5dfc7 commit 82613eaCopy full SHA for 82613ea
.github/workflows/release.yml
@@ -28,9 +28,16 @@ jobs:
28
uses: microsoft/setup-msbuild@v2
29
30
- name: Install NSIS
31
- uses: repolevedavaj/install-nsis@v1.0.1
32
- with:
33
- nsis-version: '3.11'
+ run: |
+ iwr -useb get.scoop.sh -outfile 'install.ps1'
+ .\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
41
42
- name: Get version from tag
43
id: get_version
0 commit comments