Add OpenSSL to Windows CI (#263)

* Add OpenSSL deployment to Windows Action
This commit is contained in:
Salanto 2022-05-20 00:40:53 +02:00 committed by GitHub
parent 488c9d8754
commit 604815750a
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -68,6 +68,13 @@ jobs:
done;
shell: bash
- name: Deploy OpenSSL
run: |
curl https://mirror.firedaemon.com/OpenSSL/openssl-1.1.1o.zip --output openssl-1.1.1o.zip
tar -xf openssl-1.1.1o.zip
copy .\openssl-1.1\x64\bin\libcrypto-1_1-x64.dll .\bin\libcrypto-1_1-x64.dll
copy .\openssl-1.1\x64\bin\libssl-1_1-x64.dll .\bin\libssl-1_1-x64.dll
- name: Upload zip
uses: actions/upload-artifact@v2
with: