Skip to content

Commit

Permalink
try fix openssl not found on windows
Browse files Browse the repository at this point in the history
  • Loading branch information
benbovy committed Sep 3, 2024
1 parent 692156b commit 9d99ec0
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -82,6 +82,14 @@ jobs:
ls -all .
shell: bash

# https://github.com/actions/runner-images/issues/8344
- name: Install OpenSSL (Windows)
if: runner.os == 'Windows'
shell: powershell
run: |
echo "VCPKG_ROOT=$env:VCPKG_INSTALLATION_ROOT" | Out-File -FilePath $env:GITHUB_ENV -Append
vcpkg install openssl:x64-windows-static-md
- name: Build wheels
uses: pypa/[email protected]
env:
Expand Down

0 comments on commit 9d99ec0

Please sign in to comment.