diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 3d6b469..ac4b3b5 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -37,7 +37,8 @@ jobs: # 5. Build the executable with PyInstaller - name: Build executable with PyInstaller run: | - poetry run pyinstaller src/gui/main.py --onefile --name pid-sim.exe --collect-all PyQt6 --hidden-import=PyQt6 --clean --debug=all + pyinstaller src/gui/main.py --onefile --name pid-sim.exe --collect-all PyQt6 --hidden-import=PyQt6.QtCore --hidden-import=PyQt6.QtWidgets --hidden-import=PyQt6.QtGui --clean + # 6. Verify the build (optional) - name: Verify executable