From 0a0b7a830386ba6a31c2ec8316849ae4d1b8240d Mon Sep 17 00:00:00 2001 From: staticdev Date: Mon, 27 Jan 2025 22:51:38 +0100 Subject: [PATCH] 6.0.0 --- .github/workflows/release.yml | 12 +++++------- 1 file changed, 5 insertions(+), 7 deletions(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 59611459..6cf581aa 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -4,7 +4,7 @@ name: Release "on": push: tags: - - "v[0-9]+.[0-9]+.[0-9]+" + - "[0-9]+.[0-9]+.[0-9]+" jobs: release: @@ -25,15 +25,15 @@ jobs: with: python-version: "3.13" - - name: Install dependencies - run: | - uv sync --all-extras --frozen - - name: Install UV uses: astral-sh/setup-uv@v5 with: version: ">=0.5.24" + - name: Install dependencies + run: | + uv sync --all-extras --frozen + - name: Check if there is a parent commit id: check-parent-commit run: | @@ -44,10 +44,8 @@ jobs: uv build - name: Publish package on PyPI - if: steps.check-version.outputs.tag uses: pypa/gh-action-pypi-publish@release/v1 with: - user: __token__ password: ${{ secrets.PYPI_API_TOKEN }} - name: Publish the release notes