Triggers build on main branch changes

Updates workflow to trigger on pushes to the main branch when pyproject.toml is modified, in addition to manual dispatch.

Improves automation by ensuring builds occur for relevant changes.
This commit is contained in:
2025-04-27 10:32:25 +00:00
parent e58c0897ce
commit 84800c25a5

View File

@@ -1,7 +1,12 @@
name: Build Wheels
on:
workflow_dispatch: # <-- Nur manuell über GitHub startbar
workflow_dispatch:
push:
branches:
- main
paths:
- "pyproject.toml"
jobs:
build: