X Tutup
Skip to content

Commit 3bfcd10

Browse files
committed
Fix missing dll
2 parents 2657274 + 3570e4d commit 3bfcd10

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

.github/workflows/laigter-windows.yaml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -30,6 +30,9 @@ jobs:
3030
mkdir \laigter-windows
3131
windeployqt --compiler-runtime --dir .\laigter-windows .\release\laigter.exe
3232
copy /Y .\release\laigter.exe .\laigter-windows\laigter.exe
33+
for /f "usebackq" %%i in (`where libgomp-1.dll`) do copy "%%i" .\laigter-windows\
34+
for /f "usebackq" %%i in (`where libwinpthread-1.dll`) do copy "%%i" .\laigter-windows\
35+
where libmcfgthread-1.dll
3336
tar.exe -a -c -f laigter-windows.zip laigter-windows
3437
3538
- name: upload artifacts

0 commit comments

Comments
 (0)
X Tutup