Skip to content

Commit

Permalink
Fix file moving in Windows workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
adazem009 committed Mar 2, 2024
1 parent 96371d2 commit dc34d83
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions .github/workflows/windows-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -62,11 +62,12 @@ jobs:
- name: Windows build
run: .ci/common/build.sh win_build win64
shell: bash
- name: Copy files
- name: Deploy
run: |
mkdir win_release
robocopy win_build release *.exe /S /MOV
robocopy win_build release *.dll /S /MOV
mkdir tmp
for /r win_build %%f in (*.exe) do @move "%%f" win_release
for /r win_build %%f in (*.dll) do @move "%%f" win_release
cd win_release
windeployqt ${{ env.executable_name }}.exe --qmldir ..\win_build\src || exit 5
for %%v in (*.dll) do windeployqt "%%v" || exit 5
Expand Down

0 comments on commit dc34d83

Please sign in to comment.