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