Nuitka-Action
Nuitka-Action copied to clipboard
Action to build with Nuitka on GitHub in your workflows
The instructions are not clear... I modified my action.yml file to my liking, but I cannot figure out for the life of me how to run this... I've tried: nuitka...
Nuitka has the option to include qt plugins with the option `--include-qt-plugins` followed by a list of plugins. How can this be integrated into the github action because there is...
I'm creating a Pyside6 application for deployment and would like to use the following command: ```bash $ python -m nuitka --onefile --enable-plugin=pyside6 --include-data-dir=images=images main.py ``` The option `--include-data-dir` is needed...
See https://github.com/Nuitka/Nuitka-Action/blob/main/action.yml#L45. Says "Defaults to off.", has `default: true`.
This is Actions file ```yaml name: Nuitka on Windows on: workflow_dispatch: jobs: build: runs-on: windows-latest steps: - uses: actions/checkout@v4 - name: Install poetry run: pip install poetry - uses: actions/setup-python@v5...
Hi, I try to build exe file using the multi feature. Doc say need main param, but if I put it I got this warning : **Warning: Unexpected input(s) 'main'.**...