From e34a95ae3061e15c0811d09506bec2d88d68c797 Mon Sep 17 00:00:00 2001 From: "Scott C. Livingston" Date: Sat, 4 Jan 2025 18:40:53 -0800 Subject: [PATCH] CI: manually install OpenSSL on Windows --- .github/workflows/main.yml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 8a25785..662f00e 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -19,6 +19,10 @@ jobs: - uses: actions/checkout@v4 - run: rustup toolchain install stable --profile minimal - uses: Swatinem/rust-cache@v2 + - name: Install OpenSSL manually if on Windows + if: runner.os == 'Windows' + run: | + choco install openssl - name: Prepare to build run: | mkdir keys