From 8b5ccf6a67ef824c5e12680c0d134d268d007ce2 Mon Sep 17 00:00:00 2001 From: altaskur <105789412+altaskur@users.noreply.github.com> Date: Tue, 17 Feb 2026 21:20:05 +0100 Subject: [PATCH] fix(ci): install libarchive-tools for Linux pacman build - Install libarchive-tools (bsdtar) on Linux runner - Required by electron-builder for pacman target --- .github/workflows/release.yml | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 1dd635b..27dfd7b 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -62,6 +62,11 @@ jobs: - name: Install dependencies run: npm ci + - name: Install Linux build dependencies + run: | + sudo apt-get update + sudo apt-get install -y libarchive-tools + - name: Generate Prisma client run: npm run prisma:generate