Windows latest Build with Nuitka #11
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: Windows latest Build with Nuitka | |
| permissions: | |
| contents: read | |
| actions: read | |
| on: | |
| workflow_dispatch: | |
| inputs: | |
| tags: | |
| description: 'windows latest nuitka' | |
| jobs: | |
| build: | |
| runs-on: windows-latest | |
| steps: | |
| # Check-out repository | |
| - uses: actions/checkout@v4 | |
| # Setup Python | |
| - uses: actions/setup-python@v5 | |
| with: | |
| python-version: '3.13' | |
| architecture: 'x64' | |
| cache: 'pip' | |
| cache-dependency-path: | | |
| **/requirements*.txt | |
| - name: Install Dependencies | |
| run: | | |
| pip install -r src/requirements.txt | |
| # Build python script into a single executable | |
| - uses: Nuitka/Nuitka-Action@main | |
| with: | |
| nuitka-version: develop | |
| script-name: QtTinySA.py | |
| working-directory: ./src | |
| # mode: standalone | |
| # Uploads artifact | |
| - name: Upload Artifact | |
| uses: actions/upload-artifact@v4 | |
| with: | |
| name: QtTinySA_windows_latest | |
| path: ./src/build |