We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1ea30d6 commit 7a0284cCopy full SHA for 7a0284c
.github/workflows/create_build.yaml
@@ -61,8 +61,11 @@ jobs:
61
62
- name: Package Windows app as a zip
63
run: |
64
- cd build/windows/x64/runner/Release
65
- Compress-Archive -Path "Socket_Probe.exe" -DestinationPath "Socket_Probe_Windows.zip"
+ $ReleasePath = "build/windows/x64/runner/Release"
+ $ZipPath = "build/windows/x64/runner/Release/Socket_Probe_Windows.zip"
66
+
67
+ # Include all necessary files (EXE + DLLs + Data)
68
+ Compress-Archive -Path "$ReleasePath/*" -DestinationPath $ZipPath
69
70
- name: Upload Windows build to GitHub Releases
71
uses: softprops/action-gh-release@v1
0 commit comments