Skip to content

Commit 66bb218

Browse files
Update installer.yml
Add nsis to path
1 parent a828a0e commit 66bb218

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

.github/workflows/installer.yml

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,11 @@ jobs:
1616
ref: 'master'
1717
ssh-key: '${{ secrets.POB_INSTALLER_KEY }}'
1818
- name: Install NSIS
19-
run: choco install nsis --yes
19+
run: |
20+
choco install nsis --yes
21+
echo "C:\Program Files (x86)\NSIS" | Out-File -FilePath $env:GITHUB_PATH -Encoding utf8 -Append
22+
- name: Check NSIS
23+
run: makensis /VERSION
2024
- name: Create installer
2125
run: 'python3 make_release.py --game-version 2'
2226
- name: Upload artifact

0 commit comments

Comments
 (0)