From 2c7283d23f9cbeaffc6998d211fd7227f92fa087 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jozef=20Steinh=C3=BCbl?= Date: Sun, 21 Jul 2024 14:55:16 +0200 Subject: [PATCH] ci: install pkg-config in bootstrap step --- .github/workflows/release.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index b7a53dc..1298ec7 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -30,16 +30,16 @@ jobs: - target: x86_64-unknown-linux-gnu runner: ubuntu-latest archive: tar.gz - bootstrap: sudo apt-get update && sudo apt-get install -y libssl-dev + bootstrap: sudo apt-get update && sudo apt-get install -y libssl-dev pkg-config - target: x86_64-apple-darwin runner: macos-latest archive: tar.gz - bootstrap: brew install openssl + bootstrap: brew install openssl pkg-config - target: aarch64-apple-darwin runner: macos-latest archive: tar.gz - bootstrap: brew install openssl + bootstrap: brew install openssl pkg-config - target: x86_64-pc-windows-msvc runner: windows-latest