diff --git a/.github/workflows/release-tests.yml b/.github/workflows/release-tests.yml index 4b9f4a6f..1d214307 100644 --- a/.github/workflows/release-tests.yml +++ b/.github/workflows/release-tests.yml @@ -127,6 +127,10 @@ jobs: --windows-product-version=${{ needs.version.outputs.tag_abbrev }}.${{ needs.version.outputs.tag_offset }} --enable-console rare + - name: Fix QtNetwork SSL + run: | + Copy-Item -Path "rare.dist\libcrypto-1_1.dll" -Destination "rare.dist\libcrypto-1_1-x64.dll" + Copy-Item -Path "rare.dist\libssl-1_1.dll" -Destination "rare.dist\libssl-1_1-x64.dll" - name: Upload to Artifacts uses: actions/upload-artifact@v3 diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 467af403..e555f255 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -141,6 +141,10 @@ jobs: --windows-product-version=${{ github.event.release.tag_name }} --disable-console rare + - name: Fix QtNetwork SSL + run: | + Copy-Item -Path "rare.dist\libcrypto-1_1.dll" -Destination "rare.dist\libcrypto-1_1-x64.dll" + Copy-Item -Path "rare.dist\libssl-1_1.dll" -Destination "rare.dist\libssl-1_1-x64.dll" - name: Compress run: | python -c "import shutil; shutil.make_archive('Rare-Windows', 'zip', 'rare.dist')" diff --git a/misc/nuitka_build.bat b/misc/nuitka_build.bat index b8737d75..db6932c2 100644 --- a/misc/nuitka_build.bat +++ b/misc/nuitka_build.bat @@ -31,3 +31,5 @@ python -m nuitka ^ --windows-product-version=0.0.0.0 ^ --enable-console ^ rare +copy rare.dist\libcrypto-1_1.dll rare.dist\libcrypto-1_1-x64.dll +copy rare.dist\libssl-1_1.dll rare.dist\libssl-1_1-x64.dll