From e11a0e258cafa39b72bb6dcffe636d702a61eec1 Mon Sep 17 00:00:00 2001 From: matt Date: Sat, 14 Feb 2026 12:22:35 +0900 Subject: [PATCH] Enhance CI workflow by adding Linux packaging dependencies installation step - Added a step in the release workflow to install libarchive-tools, ensuring necessary dependencies are available for Linux packaging during the CI process. --- .github/workflows/release.yml | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 7e7a0a4b..5291c096 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -191,6 +191,11 @@ jobs: with: python-version: '3.11' + - name: Install Linux packaging dependencies + run: | + sudo apt-get update + sudo apt-get install -y libarchive-tools + - name: Install dependencies run: pnpm install --no-frozen-lockfile