From 19ea09d035117a663bd1cdfd09de07612148037d Mon Sep 17 00:00:00 2001 From: KeksNino Date: Wed, 11 Feb 2026 21:28:06 +0100 Subject: [PATCH] fix: build_info.json path in github CI --- .github/workflows/dev.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/dev.yml b/.github/workflows/dev.yml index 8761b45..62bbfae 100644 --- a/.github/workflows/dev.yml +++ b/.github/workflows/dev.yml @@ -139,7 +139,7 @@ jobs: run: | pyinstaller --onefile --windowed \ --add-data "build_info.json:." \ - --add-data "build_info.json:core" \ + --add-data "build_info.json:src/core" \ --add-data "build_info.json:src/core/interface" \ --add-data "src/core/interface/assets:src/core/interface/assets" \ --icon "src/core/interface/assets/logo.png" \ @@ -159,10 +159,10 @@ jobs: run: | pyinstaller --onefile \ --add-data "build_info.json:." \ - --add-data "build_info.json:core" \ + --add-data "build_info.json:src/core" \ --add-data "build_info.json:src/core/interface" \ --add-data "src/core/interface/assets:src/core/interface/assets" \ - --icon "src/core/interface/assets/logo.png" \ + --icon "src/core/interface/assets/fr logo.png" \ --exclude-module PyQt6 \ --exclude-module PyQt5 \ --hidden-import=backports.tarfile \