Skip to content

Commit c1481ce

Browse files
committed
Change Windows build directory
1 parent 6b59737 commit c1481ce

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

.github/workflows/windows-build.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -57,15 +57,15 @@ jobs:
5757
version: ${{ matrix.mingw-version }}
5858
## Build
5959
- name: Windows build
60-
run: .ci/common/build.sh win_build win64
60+
run: .ci/common/build.sh 'D:/w' win64
6161
shell: bash
6262
- name: Deploy
6363
run: |
6464
mkdir win_release
65-
for /r win_build %%f in (${{ env.executable_name }}.exe) do @move "%%f" win_release
66-
for /r win_build %%f in (*.dll) do @move "%%f" win_release
65+
for /r D:\w %%f in (${{ env.executable_name }}.exe) do @move "%%f" win_release
66+
for /r D:\w %%f in (*.dll) do @move "%%f" win_release
6767
cd win_release
68-
windeployqt ${{ env.executable_name }}.exe --qmldir ..\win_build\src || exit 5
68+
windeployqt ${{ env.executable_name }}.exe --qmldir D:\w\src || exit 5
6969
shell: cmd
7070
- name: Copy libraries
7171
run: |

0 commit comments

Comments
 (0)