Skip to content

Fix github workflow nuitka script name. #3

Fix github workflow nuitka script name.

Fix github workflow nuitka script name. #3

Workflow file for this run

on:
push:
tags:
- release.**
jobs:
build:
strategy:
matrix:
os: [macos-latest, ubuntu-latest, windows-latest]
runs-on: ${{ matrix.os }}
steps:
- name: Check-out repository
uses: actions/checkout@v4
- uses: actions/setup-python@v4
with:
python-version: "3.9"
- uses: Gr1N/setup-poetry@v8
- uses: actions/cache@v2
with:
path: ~/.cache/pypoetry/virtualenvs
key: ${{ runner.os }}-poetry-${{ hashFiles('poetry.lock') }}
- run: poetry --version
- name: Build Executable
uses: Nuitka/Nuitka-Action@main
with:
nuitka-version: main
script-name: src/ecgviewer/main.py
onefile: true
include-package-data: |
dash
dash_core_components
dash_html_components
packaging
plotly
ecgviewer
include-package: |
dash
dash_core_components
dash_html_components
packaging
plotly
ecgviewer
- name: Upload Artifacts
uses: actions/upload-artifact@v3
with:
name: ${{ runner.os }} Build
path: |
build/*.exe
build/*.bin
build/*.app/**/*