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 0ad1677 commit 0bdc4e4Copy full SHA for 0bdc4e4
.github/workflows/windows_installer.yml
@@ -40,10 +40,12 @@ jobs:
40
echo "C:\Program Files (x86)\NSIS" | Out-File -FilePath $env:GITHUB_PATH -Append
41
Write-Host "Current PATH:"
42
Write-Host $env:PATH
43
+ Invoke-WebRequest https://deac-riga.dl.sourceforge.net/project/nsis/NSIS%203/3.11/nsis-3.11-setup.exe?viasf=1 -OutFile C:\WINDOWS\Temp\nsis-3.11-setup.exe
44
+ Invoke-Expression "& C:\WINDOWS\Temp\nsis-3.11-setup.exe \S"
45
46
- name: Test 2
47
run: |
- Get-ChildItem -Path "C:\" -Recurse -Directory -Filter NSIS -ErrorAction SilentlyContinue
48
+ Get-ChildItem -Path "C:\Program Files (x86)\NSIS" -Recurse | Format-Table FullName
49
50
51
- name: Configure
0 commit comments