We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 34868ac commit a7bea7aCopy full SHA for a7bea7a
1 file changed
.github/workflows/release.yml
@@ -27,8 +27,10 @@ jobs:
27
with:
28
python-version: 3.12
29
- name: set version
30
- run: poetry version ${{ github.event.release.tag_name }}
+ run: uv version ${{ github.event.release.tag_name }}
31
- name: release
32
env:
33
- POETRY_PYPI_TOKEN_PYPI: ${{ secrets.PYPI_TOKEN }}
34
- run: poetry publish --build
+ UV_PUBLISH_TOKEN: ${{ secrets.PYPI_TOKEN }}
+ run: |
35
+ uv build
36
+ uv publish
0 commit comments