Skip to content

Updated build workflow #5

Updated build workflow

Updated build workflow #5

Workflow file for this run

name: Build Project
on:
push:
workflow_dispatch:
concurrency:
group: ${{ github.workflow }}
cancel-in-progress: true
jobs:
build:
name: Build
runs-on: windows-latest
steps:
- name: Checkout Source
uses: actions/checkout@v3
- name: Setup uv
uses: astral-sh/setup-uv@v6
- name: Synchronize Dependencies
run: uv sync
- name: Build Project
run: uv run pyinstaller src/main.py --onefile --name app.exe
- name: Upload Artifacts
uses: actions/upload-artifact@v4
with:
name: namestamp
path: dist/app.exe