We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 889ce31 commit 91343faCopy full SHA for 91343fa
1 file changed
.github/workflows/CI.yaml
@@ -88,11 +88,18 @@ jobs:
88
- name: Build CLI
89
run: msbuild -m -p:"Configuration=DebugCLI;Platform=x86" GhostServer.sln
90
91
+ - name: Deploy Qt
92
+ shell: cmd
93
+ run: |
94
+ mkdir GhostServer-win
95
+ copy /Y .\GhostServer.exe .\GhostServer-win\
96
+ copy /Y .\GhostServer_CLI.exe .\GhostServer-win\
97
+ cd GhostServer-win
98
+ ${{ env.QT_ROOT_DIR }}\bin\windeployqt.exe --release --no-compiler-runtime .\GhostServer.exe
99
+
100
- name: Upload Artifact
101
uses: actions/upload-artifact@v4
102
with:
103
name: GhostServer-win
- path: |
- ./GhostServer.exe
- ./GhostServer_CLI.exe
104
+ path: GhostServer-win
105
if-no-files-found: error
0 commit comments