Skip to content

Commit

Permalink
Fix windows OpenSSL path
Browse files Browse the repository at this point in the history
  • Loading branch information
jareddlc committed Sep 7, 2024
1 parent d5f006d commit 87b5560
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -36,9 +36,9 @@ jobs:

- name: Build
run: |
$env:OPENSSL_LIB_DIR="C:\Program Files\OpenSSL-Win64\lib"
$env:OPENSSL_INCLUDE_DIR="C:\Program Files\OpenSSL-Win64\include"
$env:OPENSSL_DIR="C:\Program Files\OpenSSL-Win64"
$env:OPENSSL_LIB_DIR="C:\Program Files\OpenSSL\lib"
$env:OPENSSL_INCLUDE_DIR="C:\Program Files\OpenSSL\include"
$env:OPENSSL_DIR="C:\Program Files\OpenSSL"
cargo build --release
- name: Upload Windows Artifact
Expand Down

0 comments on commit 87b5560

Please sign in to comment.