From c9f2e01131fb9917679b120676160cd35a000e34 Mon Sep 17 00:00:00 2001 From: Mohamed Boudra Date: Fri, 20 Mar 2026 00:41:41 +0700 Subject: [PATCH] desktop: fix AppImage patch step using absolute paths The patch step cd's to a temp directory for extraction, so the AppImage path must be absolute (via $GITHUB_WORKSPACE). --- .github/workflows/desktop-release.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/desktop-release.yml b/.github/workflows/desktop-release.yml index 718c86830..fda98e1b5 100644 --- a/.github/workflows/desktop-release.yml +++ b/.github/workflows/desktop-release.yml @@ -437,7 +437,7 @@ jobs: shell: bash run: | set -euo pipefail - appimage_dir="packages/desktop/src-tauri/target/release/bundle/appimage" + appimage_dir="$GITHUB_WORKSPACE/packages/desktop/src-tauri/target/release/bundle/appimage" appimage="$(find "$appimage_dir" -maxdepth 1 -type f -name '*.AppImage' | head -n 1)" if [ -z "$appimage" ]; then echo "::error::No AppImage found to patch"