Skip to content

Test (8)

Test (8) #9

Workflow file for this run

name: Executable Build
# Controls when the workflow will run
on:
# Triggers the workflow on push or pull request events but only for the "main" branch
push:
branches: [ "main", "master" ]
pull_request:
branches: [ "main", "master" ]
# Allows you to run this workflow manually from the Actions tab
workflow_dispatch:
jobs:
build:
# Windows is currently the only platform this action supports
runs-on: windows-latest
steps:
# Check-out repository
- uses: actions/checkout@v3
# Setup Python
- uses: actions/setup-python@v4
with:
python-version: '3.11' # Version range or exact version of a Python version to use, using SemVer's version range syntax
architecture: 'x64' # optional x64 or x86. Defaults to x64 if not specified
- run: |
python -m pip install poetry
poetry config virtualenvs.create false
poetry install --no-interaction
- name: Qt GUI with PySide6
uses: Nuitka/Nuitka-Action@main
with:
nuitka-version: main
script-name: meni/__main__.py
standalone: true
onefile: true
output-file: meni.exe
enable-plugins: pyside6
disable-console: true
# Uploads artifact
- name: Upload Artifact
uses: actions/upload-artifact@v3
with:
name: exe
path: build/__main__.exe