From 06d657d014c6453b707cc6269169233ad59366cd Mon Sep 17 00:00:00 2001 From: TheTank20 <57580668+thepwrtank18@users.noreply.github.com> Date: Wed, 9 Jul 2025 14:37:48 -0500 Subject: [PATCH] Update windows-arm.yml --- .github/workflows/windows-arm.yml | 10 ++-------- 1 file changed, 2 insertions(+), 8 deletions(-) diff --git a/.github/workflows/windows-arm.yml b/.github/workflows/windows-arm.yml index d9e8e4b..0c74604 100644 --- a/.github/workflows/windows-arm.yml +++ b/.github/workflows/windows-arm.yml @@ -63,14 +63,8 @@ jobs: - name: Checkout and Compile OpenSSL v1.1.1 shell: pwsh run: | - $opensslVersion = "1.1.1w" - $opensslDir = "openssl-src" - - # Download OpenSSL source - Invoke-WebRequest -Uri "https://www.openssl.org/source/openssl-$opensslVersion.tar.gz" -OutFile "openssl.tar.gz" - tar -xf openssl.tar.gz - Rename-Item -Path "openssl-$opensslVersion" -NewName $opensslDir - cd $opensslDir + git clone https://github.com/UMSKT/openssl --branch OpenSSL_1_1_1-stable --depth 1 openssl-src + cd openssl-src # Install Perl if needed choco install strawberryperl -y