Skip to content

Commit 3a6eb2b

Browse files
committed
chore: fix path for Windows installer in artifact zipping process
1 parent e7a2da6 commit 3a6eb2b

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

.github/workflows/build.yml

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -174,7 +174,9 @@ jobs:
174174
path: artifacts
175175

176176
- name: List downloaded artifacts
177-
run: ls -R artifacts
177+
run: |
178+
ls artifacts
179+
ls -R artifacts
178180
179181
- name: Windows artifacts
180182
run: ls artifacts/windows-x64
@@ -191,7 +193,7 @@ jobs:
191193
zip -r ./linux-x64.zip ./linux-x64
192194
zip -r ./windows-x64.zip ./windows-x64
193195
zip -r ./macos-arm64.zip ./macos-arm64
194-
mv windows_installer.exe ./windows-x64/windows-x64\ Inno\ installer.exe
196+
mv "windows-x64 Inno installer/windows_installer.exe" ./windows-x64/windows-x64\ Inno\ installer.exe
195197
196198
- name: Create Release
197199
uses: softprops/action-gh-release@v1

0 commit comments

Comments
 (0)