ci: install pkg-config first

This commit is contained in:
talwat 2024-10-02 00:41:50 +02:00
parent b9e3e6a87b
commit fff2471327

View File

@ -58,7 +58,10 @@ jobs:
- name: Install dependencies
if: matrix.os == 'ubuntu-latest'
run: sudo apt install libasound2-dev libssl-dev openssl pkg-config
run: |
sudo apt install -y pkg-config
sudo apt install -y libasound2-dev
openssl version -d
- name: Build binary
uses: houseabsolute/actions-rust-cross@v0