diff --git a/.github/workflows/pypi.yml b/.github/workflows/pypi.yml index b6c0bd1f1..6fbed25ab 100644 --- a/.github/workflows/pypi.yml +++ b/.github/workflows/pypi.yml @@ -5,6 +5,11 @@ on: push: branches: - master + tags: + # Semantic versioning tags + - 'v[0-9]+.[0-9]+.[0-9]+' + # Date style tags + - 'v[0-9]{2}.[0-9]{2}' jobs: deploy: name: Build and publish ${{ matrix.package }} 🐍