We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 177e205 commit 5f9e118Copy full SHA for 5f9e118
.github/workflows/release.yml
@@ -20,8 +20,8 @@ jobs:
20
21
- name: Setup uv
22
uses: astral-sh/setup-uv@v1
23
- - name: Build project for distribution with uv
24
- run: uv build
+ - name: Build project for distribution with uvx
+ run: uvx --from build python -m build
25
26
- name: Check Version
27
id: check-version
@@ -43,4 +43,4 @@ jobs:
43
- name: Publish to PyPI
44
env:
45
UV_PYPI_TOKEN: ${{ secrets.PYPI_TOKEN }}
46
- run: uv publish --token $UV_PYPI_TOKEN
+ run: uvx --from twine twine upload --non-interactive -u __token__ -p $UV_PYPI_TOKEN dist/*
0 commit comments