Skip to content

Commit 631ef75

Browse files
committed
Do not deploy all libraries using windeployqt
1 parent dc34d83 commit 631ef75

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

.github/workflows/windows-build.yml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -65,12 +65,11 @@ jobs:
6565
- name: Deploy
6666
run: |
6767
mkdir win_release
68-
mkdir tmp
6968
for /r win_build %%f in (*.exe) do @move "%%f" win_release
7069
for /r win_build %%f in (*.dll) do @move "%%f" win_release
7170
cd win_release
7271
windeployqt ${{ env.executable_name }}.exe --qmldir ..\win_build\src || exit 5
73-
for %%v in (*.dll) do windeployqt "%%v" || exit 5
72+
windeployqt libscratchcpp-render.dll || exit 5
7473
shell: cmd
7574
#- name: Finalize Windows build
7675
# run: .ci/windows_build.sh 1

0 commit comments

Comments
 (0)