Skip to content

Commit 682bd0b

Browse files
committed
removed the cool deploy thing and put everything on one section
1 parent 48e19c9 commit 682bd0b

1 file changed

Lines changed: 5 additions & 6 deletions

File tree

.github/workflows/build.yml

Lines changed: 5 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -89,19 +89,18 @@ jobs:
8989
Copy-Item "$env:Qt5_Dir\bin\Qt5Gui.dll" release\
9090
Copy-Item "$env:Qt5_Dir\bin\Qt5Widgets.dll" release\
9191
92+
Copy-Item "C:\msys64\mingw64\bin\libgcc_s_seh-1.dll" release\
93+
Copy-Item "C:\msys64\mingw64\bin\libstdc++-6.dll" release\
94+
Copy-Item "C:\msys64\mingw64\bin\libcurl-4.dll" release\
95+
Copy-Item "C:\msys64\mingw64\bin\libwinpthread-1.dll" release\
96+
9297
Copy-Item "$env:Qt5_Dir\plugins\platforms\qwindows.dll" release\platforms\
9398
Copy-Item "$env:Qt5_Dir\plugins\styles\qwindowsvistastyle.dll" release\styles\
9499
95100
$opensslPath = (Get-ChildItem "C:\Program Files\OpenSSL*" -Directory | Select-Object -First 1).FullName
96101
Get-ChildItem "$opensslPath\bin\" -Filter "libssl*.dll" | ForEach-Object { Copy-Item $_.FullName release\ }
97102
Get-ChildItem "$opensslPath\bin\" -Filter "libcrypto*.dll" | ForEach-Object { Copy-Item $_.FullName release\ }
98103
99-
- name: Deploy but cooler (MSYS2)
100-
shell: msys2 {0}
101-
run: |
102-
mkdir -p "$GITHUB_WORKSPACE/release"
103-
cp /mingw64/bin/libcurl-4.dll "$GITHUB_WORKSPACE/release/"
104-
cp /mingw64/bin/libwinpthread-1.dll "$GITHUB_WORKSPACE/release/" || true
105104
106105
- name: Build installer
107106
shell: cmd

0 commit comments

Comments
 (0)