From 9ed087faed1aa86ee3d4853abde7c2c68ec42554 Mon Sep 17 00:00:00 2001 From: rainxchzed Date: Sat, 7 Mar 2026 12:28:47 +0500 Subject: [PATCH] Update AppImage icon source path in build workflow Modified the build script to copy the application icon from the AppDir lib directory instead of the composeApp logo directory during the AppImage creation process. --- .github/workflows/build-desktop-platforms.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/build-desktop-platforms.yml b/.github/workflows/build-desktop-platforms.yml index 92e317be..1c1ede4a 100644 --- a/.github/workflows/build-desktop-platforms.yml +++ b/.github/workflows/build-desktop-platforms.yml @@ -250,7 +250,7 @@ jobs: EOF # Copy icon to AppDir root (required by appimagetool) - cp composeApp/logo/app_icon.png "$APPDIR/github-store.png" + cp "$APPDIR/lib/GitHub-Store.png" "$APPDIR/github-store.png" # Build .AppImage OUTPUT="composeApp/build/compose/binaries/main/GitHub-Store-x86_64.AppImage"