Skip to content

new workflow

new workflow #58

Workflow file for this run

name: Package exe with PyInstaller
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
jobs:
build:
strategy:
matrix:
os: [macos-latest, ubuntu-latest, windows-latest]
runs-on: ${{ matrix.os }}
steps:
- name: Check-out repository
uses: actions/checkout@v3
- name: Setup Python
uses: actions/setup-python@v4
with:
python-version: '3.10'
architecture: 'x64'
cache: 'pip'
cache-dependency-path: |
**/requirements*.txt
- name: Install Dependencies
run: |
pip install -r requirements.txt
- Name: Build Executable

Check failure on line 34 in .github/workflows/main.yml

View workflow run for this annotation

GitHub Actions / Package exe with PyInstaller

Invalid workflow file

The workflow is not valid. .github/workflows/main.yml (Line: 34, Col: 9): Unexpected value 'Name'
uses: Nuitka/Nuitka-Action@main
with:
nuitka-version: main
script-name: src/main.py
onefile: true
enable-plugins: pyqt6
include-data-dir: src/=.
windows-icon-from-ico: src/icon.ico
output-file: FinalBIGv2
- name: Upload Artifacts
uses: actions/upload-artifact@v3
with:
name: ${{ runner.os }} Build
path: |
build/*.exe
build/*.bin
build/*.app/**/*