Skip to content

Commit 0a0b7a8

Browse files
committed
6.0.0
1 parent 2d00730 commit 0a0b7a8

File tree

1 file changed

+5
-7
lines changed

1 file changed

+5
-7
lines changed

.github/workflows/release.yml

+5-7
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ name: Release
44
"on":
55
push:
66
tags:
7-
- "v[0-9]+.[0-9]+.[0-9]+"
7+
- "[0-9]+.[0-9]+.[0-9]+"
88

99
jobs:
1010
release:
@@ -25,15 +25,15 @@ jobs:
2525
with:
2626
python-version: "3.13"
2727

28-
- name: Install dependencies
29-
run: |
30-
uv sync --all-extras --frozen
31-
3228
- name: Install UV
3329
uses: astral-sh/setup-uv@v5
3430
with:
3531
version: ">=0.5.24"
3632

33+
- name: Install dependencies
34+
run: |
35+
uv sync --all-extras --frozen
36+
3737
- name: Check if there is a parent commit
3838
id: check-parent-commit
3939
run: |
@@ -44,10 +44,8 @@ jobs:
4444
uv build
4545
4646
- name: Publish package on PyPI
47-
if: steps.check-version.outputs.tag
4847
uses: pypa/gh-action-pypi-publish@release/v1
4948
with:
50-
user: __token__
5149
password: ${{ secrets.PYPI_API_TOKEN }}
5250

5351
- name: Publish the release notes

0 commit comments

Comments
 (0)