From 4d96c384a14b6ea3e052c071c4b2d6b6d220880a Mon Sep 17 00:00:00 2001 From: Yihau Chen Date: Fri, 22 Sep 2023 10:52:28 +0800 Subject: [PATCH] ci: install openssl for the Windows build (#33356) --- .github/workflows/release-artifacts.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/release-artifacts.yml b/.github/workflows/release-artifacts.yml index b8af200c1d..e89cf87b1d 100644 --- a/.github/workflows/release-artifacts.yml +++ b/.github/workflows/release-artifacts.yml @@ -47,7 +47,8 @@ jobs: id: build shell: bash run: | - export OPENSSL_DIR="C:\Program Files\OpenSSL" + choco install openssl + export OPENSSL_DIR="C:\Program Files\OpenSSL-Win64" choco install protoc export PROTOC="C:\ProgramData\chocolatey\lib\protoc\tools\bin\protoc.exe" source /tmp/env.sh