diff options
author | DioEgizio <83089242+DioEgizio@users.noreply.github.com> | 2022-09-12 12:57:18 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-09-12 07:57:18 -0300 |
commit | 69d18f17a5a64a68ba6070fcda8dbfb46ca88aff (patch) | |
tree | 005daf1a8a55aeba7245679360f68ade42dfbecf | |
parent | 10320bdeb46753932ab710dd8751fe4036a38189 (diff) | |
download | PrismLauncher-69d18f17a5a64a68ba6070fcda8dbfb46ca88aff.tar.gz PrismLauncher-69d18f17a5a64a68ba6070fcda8dbfb46ca88aff.tar.bz2 PrismLauncher-69d18f17a5a64a68ba6070fcda8dbfb46ca88aff.zip |
fix(actions, win): only copy openssl libs on qt5 builds (#1130)
-rw-r--r-- | .github/workflows/build.yml | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 26820d47..434c5775 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -249,10 +249,8 @@ jobs: cmake --install ${{ env.BUILD_DIR }} cd ${{ env.INSTALL_DIR }} - if [ "${{ matrix.msystem }}" == "mingw32" ]; then + if [ "${{ matrix.qt_ver }}" == "5" ]; then cp /mingw32/bin/libcrypto-1_1.dll /mingw32/bin/libssl-1_1.dll ./ - elif [ "${{ matrix.msystem }}" == "mingw64" ]; then - cp /mingw64/bin/libcrypto-1_1-x64.dll /mingw64/bin/libssl-1_1-x64.dll ./ fi - name: Package (Windows, portable) |