Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add Windows workflow #39

Merged
merged 11 commits into from
Mar 4, 2024
Prev Previous commit
Next Next commit
Fix file moving in Windows workflow
  • Loading branch information
adazem009 committed Mar 2, 2024
commit 44680b2490ef47886b865bfc6dbac7b9f50cc778
6 changes: 3 additions & 3 deletions .github/workflows/windows-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -62,11 +62,11 @@ 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
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