Skip to content

Commit 7499f16

Browse files
committed
Do not copy all executables in Windows workflow
1 parent 60f173d commit 7499f16

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

.github/workflows/windows-build.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,7 @@ jobs:
6565
- name: Deploy
6666
run: |
6767
mkdir win_release
68-
for /r win_build %%f in (*.exe) do @move "%%f" win_release
68+
for /r win_build %%f in (${{ env.executable_name }}.exe) do @move "%%f" win_release
6969
for /r win_build %%f in (*.dll) do @move "%%f" win_release
7070
cd win_release
7171
windeployqt ${{ env.executable_name }}.exe --qmldir ..\win_build\src || exit 5

0 commit comments

Comments
 (0)