Skip to content

Commit

Permalink
Changed OpenSSL download location
Browse files Browse the repository at this point in the history
  • Loading branch information
didibus committed Sep 19, 2023
1 parent ae7252a commit d31162f
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions .github/workflows/build-visual_studio.yml
Original file line number Diff line number Diff line change
Expand Up @@ -53,9 +53,10 @@ jobs:
- name: Setup OpenSSL
run: |
$ProgressPreference = 'SilentlyContinue'
Invoke-WebRequest -UseBasicParsing -Uri "https://mirror.firedaemon.com/OpenSSL/openssl-1.1.1p.zip" -OutFile ".\openssl-1.1.1p.zip"
Expand-Archive -LiteralPath "openssl-1.1.1p.zip" -DestinationPath "."
Rename-Item "openssl-1.1" "openssl"
Invoke-WebRequest -UseBasicParsing -Uri "https://www.openssl.org/source/old/1.1.1/openssl-1.1.1p.tar.gz" -OutFile ".\openssl-1.1.1p.tar.gz"
Expand-Archive -LiteralPath "openssl-1.1.1p.tar.gz" -DestinationPath "."
Expand-Archive -LiteralPath "openssl-1.1.1p.tar" -DestinationPath "."
Rename-Item "openssl-1.1.1p" "openssl"
Write-Output "${{ github.workspace }}\openssl" | Out-File -FilePath $Env:GITHUB_PATH -Encoding utf8 -Append
- name: Setup SDL2
Expand Down

0 comments on commit d31162f

Please sign in to comment.