We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ba1a6ae commit 48b2ce0Copy full SHA for 48b2ce0
1 file changed
.github/workflows/release.yml
@@ -56,12 +56,18 @@ jobs:
56
57
- name: Install NSIS
58
if: runner.os == 'Windows'
59
- run: choco install nsis
+ shell: pwsh
60
+ run: |
61
+ choco install nsis
62
+ echo "C:\Program Files (x86)\NSIS" | Out-File -FilePath $env:GITHUB_PATH -Encoding utf8 -Append
63
64
- name: Build (Windows)
65
66
67
run: |
68
+ makensis /VERSION
69
wails build -platform windows/amd64 -nsis
70
+ ls -R build/bin
71
mv build/bin/llm-desk.exe build/bin/llm-desk-windows-amd64.exe
72
mv build/bin/*-installer.exe build/bin/llm-desk-windows-amd64-installer.exe
73
0 commit comments