From 84800c25a5419b1ad73b1faa48190e1270d2305b Mon Sep 17 00:00:00 2001 From: Max P Date: Sun, 27 Apr 2025 10:32:25 +0000 Subject: [PATCH] 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. --- .github/workflows/build-deb.yml | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/.github/workflows/build-deb.yml b/.github/workflows/build-deb.yml index 2b7206e..dd3f684 100644 --- a/.github/workflows/build-deb.yml +++ b/.github/workflows/build-deb.yml @@ -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: