From f9ca8bbd79cd2a8a4dc2bad26e2712686f2d3b6d Mon Sep 17 00:00:00 2001 From: benexl Date: Wed, 31 Dec 2025 15:18:24 +0300 Subject: [PATCH] fix: add installation of system dependencies for Linux in GitHub Actions workflow --- .github/workflows/release-binaries.yml | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/.github/workflows/release-binaries.yml b/.github/workflows/release-binaries.yml index 1c3c969..ad758a7 100644 --- a/.github/workflows/release-binaries.yml +++ b/.github/workflows/release-binaries.yml @@ -50,6 +50,12 @@ jobs: with: enable-cache: true + - name: Install system dependencies (Linux) + if: runner.os == 'Linux' + run: | + sudo apt-get update + sudo apt-get install -y libdbus-1-dev + - name: Install dependencies run: uv sync --all-extras --all-groups