From 1ff370e6bcccba0bb8e5a935aae62007cc6e7fb0 Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Sat, 14 Feb 2026 11:21:25 +0000 Subject: [PATCH 1/2] Initial plan From f4a26d5d580906ec3f1423de805812244219a263 Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Sat, 14 Feb 2026 11:22:45 +0000 Subject: [PATCH 2/2] feat: add Arch Linux pacman support - Add pacman target to Linux build configuration in package.json - Update release workflow to include .pacman files in artifacts - Update GitHub release creation to include pacman packages Co-authored-by: altaskur <105789412+altaskur@users.noreply.github.com> --- .github/workflows/release.yml | 2 ++ package.json | 6 ++++++ 2 files changed, 8 insertions(+) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index ecd8e64..1dd635b 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -80,6 +80,7 @@ jobs: path: | release/*.AppImage release/*.deb + release/*.pacman release/latest-linux.yml retention-days: 5 @@ -157,6 +158,7 @@ jobs: release/latest.yml release/*.AppImage release/*.deb + release/*.pacman release/latest-linux.yml release/*.dmg release/*.zip diff --git a/package.json b/package.json index 0d17324..b11e208 100644 --- a/package.json +++ b/package.json @@ -99,6 +99,12 @@ "arch": [ "x64" ] + }, + { + "target": "pacman", + "arch": [ + "x64" + ] } ], "icon": "public/icon.png",