Skip to content

Commit 622f269

Browse files
committed
Correct paths for windows zip
1 parent 9f50bb6 commit 622f269

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

.github/workflows/run-tests.yml

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -117,7 +117,11 @@ jobs:
117117
mkdir -p dist/release
118118
cp dist/dist-build-ubuntu-latest/* dist/release
119119
- name: Create Windows Release Zip
120-
run: zip -r "dist/release/Simple-DHCP-Server-Windows-${{github.ref_name}}.zip" dist/dist-exe-windows-latest/*
120+
run: |
121+
(
122+
cd dist/dist-exe-windows-latest/simple-dhcp-server-windows
123+
zip -r "../../release/Simple-DHCP-Server-Windows-${{github.ref_name}}.zip" *
124+
)
121125
- name: create release
122126
uses: ncipollo/[email protected]
123127
with:

0 commit comments

Comments
 (0)