From 73a4c711962d7454e7b9201b750e831493a17add Mon Sep 17 00:00:00 2001 From: Shaun Arman Date: Sun, 5 Apr 2026 17:02:20 -0500 Subject: [PATCH] =?UTF-8?q?fix(ci):=20restrict=20arm64=20bundles=20to=20de?= =?UTF-8?q?b,rpm=20=E2=80=94=20skip=20AppImage?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit linuxdeploy-aarch64.AppImage cannot be reliably executed in a cross- compile context (amd64 host, aarch64 target) even with QEMU binfmt and APPIMAGE_EXTRACT_AND_RUN. The .deb and .rpm cover all major arm64 Linux distros. An arm64 AppImage can be added later via a native arm64 build job if required. --- .gitea/workflows/auto-tag.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.gitea/workflows/auto-tag.yml b/.gitea/workflows/auto-tag.yml index fdc13e78..e306a8a8 100644 --- a/.gitea/workflows/auto-tag.yml +++ b/.gitea/workflows/auto-tag.yml @@ -455,7 +455,7 @@ jobs: . "$HOME/.cargo/env" npm ci --legacy-peer-deps rustup target add aarch64-unknown-linux-gnu - CI=true npx tauri build --target aarch64-unknown-linux-gnu + CI=true npx tauri build --target aarch64-unknown-linux-gnu --bundles deb,rpm - name: Upload artifacts env: RELEASE_TOKEN: ${{ secrets.RELEASE_TOKEN }}