We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3e783a6 commit edbffa6Copy full SHA for edbffa6
.github/workflows/ci_cd.yml
@@ -95,7 +95,11 @@ jobs:
95
run: uv run pyinstaller frozen.spec
96
97
- name: Install NSIS
98
- run: choco install nsis -y
+ run: |
99
+ choco install nsis -y
100
+ ls C:\ProgramData\chocolatey\bin
101
+ $Env:PATH += ";C:\ProgramData\chocolatey\bin"
102
+ echo "C:\ProgramData\chocolatey\bin" | Out-File -FilePath $env:GITHUB_PATH -Encoding utf8 -Append
103
104
- name: Print NSIS version
105
run: makensis -VERSION
0 commit comments