From a3220f574e533552beb8a4b9de53110ef65b149e Mon Sep 17 00:00:00 2001 From: Nate Kelley Date: Wed, 10 Dec 2025 14:30:35 -0700 Subject: [PATCH] fix: missing version tags --- .github/workflows/release.yml | 1 + pyproject.toml | 1 + 2 files changed, 2 insertions(+) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index ed9bccd..129ab67 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -73,3 +73,4 @@ jobs: packages-dir: dist/ password: ${{ secrets.PYPI_API_TOKEN }} print-hash: true + skip-existing: true diff --git a/pyproject.toml b/pyproject.toml index 432072e..90354db 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -51,6 +51,7 @@ ignore_missing_imports = true [tool.semantic_release] version_toml = ["pyproject.toml:project.version"] build_command = "pip install build && python -m build" +tag_format = "v{version}" [tool.semantic_release.branches.main] match = "main"