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 96371d2 commit 44680b2Copy full SHA for 44680b2
.github/workflows/windows-build.yml
@@ -62,11 +62,11 @@ jobs:
62
- name: Windows build
63
run: .ci/common/build.sh win_build win64
64
shell: bash
65
- - name: Copy files
+ - name: Deploy
66
run: |
67
mkdir win_release
68
- robocopy win_build release *.exe /S /MOV
69
- robocopy win_build release *.dll /S /MOV
+ for /r win_build %%f in (*.exe) do @move "%%f" win_release
+ for /r win_build %%f in (*.dll) do @move "%%f" win_release
70
cd win_release
71
windeployqt ${{ env.executable_name }}.exe --qmldir ..\win_build\src || exit 5
72
for %%v in (*.dll) do windeployqt "%%v" || exit 5
0 commit comments