From 3e82e8fadbcde3f685a313db1d1b04d65cb0877b Mon Sep 17 00:00:00 2001 From: Fazri Gading Date: Wed, 21 Jan 2026 18:34:34 +0800 Subject: [PATCH] add libarchive-tools for bsdtar in release workflow --- .github/workflows/release.yml | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 054b2ad..61e480b 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -13,12 +13,18 @@ jobs: runs-on: ubuntu-latest steps: - uses: actions/checkout@v4 + # FIX Install bsdtar for Pacman builds + - name: Install build dependencies + run: | + sudo apt-get update + sudo apt-get install -y libarchive-tools + - uses: actions/setup-node@v4 with: node-version: '22' cache: 'npm' - run: npm ci - + - name: Build Linux Packages run: | npx electron-builder --linux --x64 --arm64 --publish never