From 51d9c1d11958e5f49134f5c2948cab9d9202d7e8 Mon Sep 17 00:00:00 2001 From: Your Name Date: Tue, 2 Sep 2025 15:56:00 +0300 Subject: [PATCH] Update executable naming in build workflow Changed the internal executable target name to 'YTSage' instead of including the version. The AppImage filename still includes the version, but the base executable name is now consistent and versionless. --- .github/workflows/build-linux.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/build-linux.yml b/.github/workflows/build-linux.yml index ad905a7..b107ec6 100644 --- a/.github/workflows/build-linux.yml +++ b/.github/workflows/build-linux.yml @@ -129,7 +129,7 @@ jobs: executables = [ Executable( script="main.py", - target_name=f"YTSage-v{version}", + target_name="YTSage", icon="assets/branding/icons/icon.png", ) ] @@ -144,7 +144,7 @@ jobs: "bdist_appimage": { # If ends with .AppImage, use verbatim file name "target_name": f"YTSage-v{version}.AppImage", - # appimagetool will be auto-downloaded if not present + # Use the base executable name internally, version in AppImage filename }, # RPM packaging metadata (minimal) "bdist_rpm": {