Skip to content

Commit 3185d3d

Browse files
committed
Fix file copying in Windows workflow
1 parent 96371d2 commit 3185d3d

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.github/workflows/windows-build.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -65,8 +65,8 @@ jobs:
6565
- name: Copy files
6666
run: |
6767
mkdir win_release
68-
robocopy win_build release *.exe /S /MOV
69-
robocopy win_build release *.dll /S /MOV
68+
for /r win_build %f in (*.exe) do @copy "%f" win_release
69+
for /r win_build %f in (*.dll) do @copy "%f" win_release
7070
cd win_release
7171
windeployqt ${{ env.executable_name }}.exe --qmldir ..\win_build\src || exit 5
7272
for %%v in (*.dll) do windeployqt "%%v" || exit 5

0 commit comments

Comments
 (0)