From 194b5a82870303e2ce556a848c470e398b7b3fbf Mon Sep 17 00:00:00 2001 From: Vitaly Neyman Date: Tue, 17 Feb 2026 13:09:59 +0200 Subject: [PATCH] Fix PyInstaller build: install project deps and add hidden imports --- .github/workflows/release.yml | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index c8e7681..e85778e 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -44,8 +44,8 @@ jobs: with: python-version: "3.11" - - name: Install PyInstaller - run: pip install pyinstaller + - name: Install dependencies and PyInstaller + run: pip install . pyinstaller - name: Build executable run: | @@ -53,6 +53,9 @@ jobs: --hidden-import platform_compat.darwin \ --hidden-import platform_compat.linux \ --hidden-import platform_compat.common \ + --hidden-import nano_scanner \ + --hidden-import scanner_utils \ + --hidden-import output_structures \ openclaw_usage.py - name: Upload executable artifact