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 a828a0e commit 66bb218Copy full SHA for 66bb218
.github/workflows/installer.yml
@@ -16,7 +16,11 @@ jobs:
16
ref: 'master'
17
ssh-key: '${{ secrets.POB_INSTALLER_KEY }}'
18
- name: Install NSIS
19
- run: choco install nsis --yes
+ 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
24
- name: Create installer
25
run: 'python3 make_release.py --game-version 2'
26
- name: Upload artifact
0 commit comments