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.
This commit is contained in:
matt 2026-02-14 12:22:35 +09:00
parent b5c057d550
commit e11a0e258c

View file

@ -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