Skip to content

Commit a7bea7a

Browse files
committed
ci: fix release action
1 parent 34868ac commit a7bea7a

1 file changed

Lines changed: 5 additions & 3 deletions

File tree

.github/workflows/release.yml

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -27,8 +27,10 @@ jobs:
2727
with:
2828
python-version: 3.12
2929
- name: set version
30-
run: poetry version ${{ github.event.release.tag_name }}
30+
run: uv version ${{ github.event.release.tag_name }}
3131
- name: release
3232
env:
33-
POETRY_PYPI_TOKEN_PYPI: ${{ secrets.PYPI_TOKEN }}
34-
run: poetry publish --build
33+
UV_PUBLISH_TOKEN: ${{ secrets.PYPI_TOKEN }}
34+
run: |
35+
uv build
36+
uv publish

0 commit comments

Comments
 (0)