From d05ca74db28ad210ca449bb8767564b768bd9487 Mon Sep 17 00:00:00 2001 From: Mohamed <110548351+oop7@users.noreply.github.com> Date: Sun, 25 Jan 2026 14:46:10 +0200 Subject: [PATCH] Fix build config for Linux workflow Corrected script path to 'ytsage_entry.py', updated icon path, and fixed configuration for including system libraries and binary excludes in the build-linux.yml workflow. --- .github/workflows/build-linux.yml | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/build-linux.yml b/.github/workflows/build-linux.yml index bb05ae1..ba1e06f 100644 --- a/.github/workflows/build-linux.yml +++ b/.github/workflows/build-linux.yml @@ -150,16 +150,16 @@ jobs: include_files=include_files_list, # Bundle all dependencies - avoid system library references bin_includes=[], - bin_excludesytsage_entry.py", - target_name="ytsage", - icon="*", "")], + bin_excludes=[], + # Important: include system libs to avoid external dependencies + replace_paths=[("*", "")], ) executables = [ Executable( - script="main.py", + script="ytsage_entry.py", target_name="ytsage", - icon="assets/branding/icons/icon.png", + icon="branding/icons/icon.png", ) ]