1
0
Fork 0
mirror of synced 2024-05-03 20:23:01 +12:00

workflows: Copy SSL files with the names QtNetwork expects

This commit is contained in:
Stelios Tsampas 2022-09-22 02:04:30 +03:00 committed by Dummerle
parent 829da4f93b
commit 8d7bd89d63
3 changed files with 10 additions and 0 deletions

View file

@ -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

View file

@ -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')"

View file

@ -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