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.
This commit is contained in:
Your Name
2025-09-02 15:56:00 +03:00
parent fe7c9c3797
commit 51d9c1d119
+2 -2
View File
@@ -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": {