From 18d526bade8ac726c63822812ce3dbfa03375531 Mon Sep 17 00:00:00 2001 From: Denys Vuika Date: Mon, 11 Nov 2024 18:27:57 -0500 Subject: [PATCH] update the release workflow --- .github/workflows/release.yml | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 9514cbd..6737754 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -55,7 +55,12 @@ jobs: sudo apt-get update sudo apt-get install -y pkg-config libssl-dev echo "OPENSSL_DIR=/usr/lib/ssl" >> $GITHUB_ENV - + + - name: Install Chocolatey (Windows only) + if: matrix.target == 'x86_64-pc-windows-gnu' + run: | + Set-ExecutionPolicy Bypass -Scope Process -Force; [System.Net.ServicePointManager]::SecurityProtocol = [System.Net.ServicePointManager]::SecurityProtocol -bor 3072; iex ((New-Object System.Net.WebClient).DownloadString('https://community.chocolatey.org/install.ps1')) + - name: Install OpenSSL (Windows only) if: matrix.target == 'x86_64-pc-windows-gnu' run: |