From 27a46a7542c2ab281fe9ab402aebeb840f700319 Mon Sep 17 00:00:00 2001 From: Shaun Arman Date: Sun, 12 Apr 2026 20:56:42 -0500 Subject: [PATCH] fix(ci): add APPIMAGE_EXTRACT_AND_RUN to build-linux-amd64 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit linuxdeploy is itself an AppImage. Running it inside a Docker container requires APPIMAGE_EXTRACT_AND_RUN=1 so it extracts and runs its payload directly rather than relying on FUSE (unavailable in containers). Already set on build-linux-arm64 — missing from the amd64 job. --- .gitea/workflows/auto-tag.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.gitea/workflows/auto-tag.yml b/.gitea/workflows/auto-tag.yml index 03680170..c48edde7 100644 --- a/.gitea/workflows/auto-tag.yml +++ b/.gitea/workflows/auto-tag.yml @@ -158,6 +158,8 @@ jobs: restore-keys: | ${{ runner.os }}-npm- - name: Build + env: + APPIMAGE_EXTRACT_AND_RUN: "1" run: | npm ci --legacy-peer-deps CI=true npx tauri build --target x86_64-unknown-linux-gnu