Skip to content

Commit

Permalink
ci: fix release actions
Browse files Browse the repository at this point in the history
  • Loading branch information
vthib committed Sep 12, 2023
1 parent 307e91a commit 5b5beb8
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -84,10 +84,12 @@ jobs:
vcpkgGitCommitId: '163fe7bd3d67c41200617caaa245b5ba2ba854e6'
runVcpkgInstall: true

- name: Export VCPKGRS_TRIPLET env var
- name: Export VCPKGRS_TRIPLET and OPENSSL_DIR env var
if: ${{ matrix.os == 'windows-2022' }}
shell: bash
run: echo "VCPKGRS_TRIPLET=${{ matrix.vcpkg_triplet }}" >> $GITHUB_ENV
run: |
echo "VCPKGRS_TRIPLET=${{ matrix.vcpkg_triplet }}" >> $GITHUB_ENV
echo "OPENSSL_DIR=${{ runner.workspace }}\\vcpkg\\installed\\${{ matrix.vcpkg_triplet }}" >> $GITHUB_ENV
- name: Install Rust
uses: dtolnay/rust-toolchain@stable
Expand Down

0 comments on commit 5b5beb8

Please sign in to comment.