We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c10533e commit 48e19c9Copy full SHA for 48e19c9
1 file changed
.github/workflows/build.yml
@@ -89,9 +89,6 @@ jobs:
89
Copy-Item "$env:Qt5_Dir\bin\Qt5Gui.dll" release\
90
Copy-Item "$env:Qt5_Dir\bin\Qt5Widgets.dll" release\
91
92
- $MsysBin = "C:\msys64\mingw64\bin"
93
- Copy-Item "$MsysBin\libwinpthread-1.dll" release\
94
-
95
Copy-Item "$env:Qt5_Dir\plugins\platforms\qwindows.dll" release\platforms\
96
Copy-Item "$env:Qt5_Dir\plugins\styles\qwindowsvistastyle.dll" release\styles\
97
@@ -102,7 +99,9 @@ jobs:
102
99
- name: Deploy but cooler (MSYS2)
103
100
shell: msys2 {0}
104
101
run: |
+ mkdir -p "$GITHUB_WORKSPACE/release"
105
cp /mingw64/bin/libcurl-4.dll "$GITHUB_WORKSPACE/release/"
+ cp /mingw64/bin/libwinpthread-1.dll "$GITHUB_WORKSPACE/release/" || true
106
107
- name: Build installer
108
shell: cmd
0 commit comments