From 9acb9f8dc3befb02a2625671bac70e8a61f3d004 Mon Sep 17 00:00:00 2001 From: "P.T. Jochym" Date: Sat, 7 Dec 2024 19:10:42 +0100 Subject: [PATCH] Trigger on tagging --- .github/workflows/pypi.yml | 2 ++ .github/workflows/testpypi.yml | 2 ++ 2 files changed, 4 insertions(+) diff --git a/.github/workflows/pypi.yml b/.github/workflows/pypi.yml index 6c2af51..b3669f1 100644 --- a/.github/workflows/pypi.yml +++ b/.github/workflows/pypi.yml @@ -1,6 +1,8 @@ name: Build, test and publish to (test)PyPI on: push: + tags: + - 'v*' # matches semantic versioning (e.g., v1.2.3) branches: - master - main diff --git a/.github/workflows/testpypi.yml b/.github/workflows/testpypi.yml index 09632f6..2c42005 100644 --- a/.github/workflows/testpypi.yml +++ b/.github/workflows/testpypi.yml @@ -1,6 +1,8 @@ name: Build, test and publish to testPyPI on: push: + tags: + - 'v*' # matches semantic versioning (e.g., v1.2.3) branches: - dev - hotfix