From 7e8e68ea3fed66138cafb2fd3ed508d51ff57346 Mon Sep 17 00:00:00 2001 From: ghinks Date: Fri, 6 Mar 2026 13:32:32 -0500 Subject: [PATCH] feat: tag commit with version after PyPI publish Creates and pushes a git tag (e.g. v0.0.8) after the version bump commit so each published release is traceable in git history. Co-Authored-By: Claude Sonnet 4.6 --- .github/workflows/pypi_publish.yml | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/.github/workflows/pypi_publish.yml b/.github/workflows/pypi_publish.yml index 83edf01..6a46672 100644 --- a/.github/workflows/pypi_publish.yml +++ b/.github/workflows/pypi_publish.yml @@ -64,3 +64,8 @@ jobs: git add pyproject.toml uv.lock git commit -m "chore: bump version to ${{ steps.bump.outputs.version }} [skip ci]" git push + + - name: Tag Version + run: | + git tag "v${{ steps.bump.outputs.version }}" + git push origin "v${{ steps.bump.outputs.version }}"