Skip to content

Commit 5b5beb8

Browse files
committed
ci: fix release actions
1 parent 307e91a commit 5b5beb8

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

.github/workflows/release.yml

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -84,10 +84,12 @@ jobs:
8484
vcpkgGitCommitId: '163fe7bd3d67c41200617caaa245b5ba2ba854e6'
8585
runVcpkgInstall: true
8686

87-
- name: Export VCPKGRS_TRIPLET env var
87+
- name: Export VCPKGRS_TRIPLET and OPENSSL_DIR env var
8888
if: ${{ matrix.os == 'windows-2022' }}
8989
shell: bash
90-
run: echo "VCPKGRS_TRIPLET=${{ matrix.vcpkg_triplet }}" >> $GITHUB_ENV
90+
run: |
91+
echo "VCPKGRS_TRIPLET=${{ matrix.vcpkg_triplet }}" >> $GITHUB_ENV
92+
echo "OPENSSL_DIR=${{ runner.workspace }}\\vcpkg\\installed\\${{ matrix.vcpkg_triplet }}" >> $GITHUB_ENV
9193
9294
- name: Install Rust
9395
uses: dtolnay/rust-toolchain@stable

0 commit comments

Comments
 (0)