Skip to content

Commit 48b2ce0

Browse files
author
shanroislamdev
committed
chore(ci): add debug steps and fix NSIS path
1 parent ba1a6ae commit 48b2ce0

1 file changed

Lines changed: 7 additions & 1 deletion

File tree

.github/workflows/release.yml

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,12 +56,18 @@ jobs:
5656
5757
- name: Install NSIS
5858
if: runner.os == 'Windows'
59-
run: choco install nsis
59+
shell: pwsh
60+
run: |
61+
choco install nsis
62+
echo "C:\Program Files (x86)\NSIS" | Out-File -FilePath $env:GITHUB_PATH -Encoding utf8 -Append
6063
6164
- name: Build (Windows)
6265
if: runner.os == 'Windows'
66+
shell: pwsh
6367
run: |
68+
makensis /VERSION
6469
wails build -platform windows/amd64 -nsis
70+
ls -R build/bin
6571
mv build/bin/llm-desk.exe build/bin/llm-desk-windows-amd64.exe
6672
mv build/bin/*-installer.exe build/bin/llm-desk-windows-amd64-installer.exe
6773

0 commit comments

Comments
 (0)