Skip to content

Commit

Permalink
Modified download of NSIS
Browse files Browse the repository at this point in the history
  • Loading branch information
bavodenys authored Jan 21, 2024
1 parent cb62fa9 commit 409c98c
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -54,9 +54,10 @@ jobs:
- name: Download and Install NSIS
run: |
mkdir -p $HOME/nsis
Invoke-WebRequest -Uri 'https://prdownloads.sourceforge.net/nsis/nsis-3.06.1-setup.exe' -OutFile $HOME/nsis/nsis-setup.exe
Start-Process -Wait -FilePath $HOME/nsis/nsis-setup.exe -ArgumentList '/S'
$nsisPath = "$env:USERPROFILE\nsis"
New-Item -ItemType Directory -Path $nsisPath -Force
Invoke-WebRequest -Uri 'https://prdownloads.sourceforge.net/nsis/nsis-3.06.1-setup.exe' -OutFile $nsisPath\nsis-setup.exe
Start-Process -Wait -FilePath "$nsisPath\nsis-setup.exe" -ArgumentList '/S'
- name: Compile NSIS Script
run: |
Expand Down

0 comments on commit 409c98c

Please sign in to comment.