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 dab14f7 commit 7fff3d6Copy full SHA for 7fff3d6
.github/workflows/release-pypi.yml
@@ -55,6 +55,13 @@ jobs:
55
run: |
56
uv build
57
58
+ - name: Publish package to TestPyPI
59
+ run: |
60
+ # `uv publish` does not understand `--skip-existing`.
61
+ # https://github.com/astral-sh/uv/issues/7917
62
+ # https://github.com/astral-sh/uv/issues/12369
63
+ uvx twine upload --repository-url https://test.pypi.org/legacy --skip-existing dist/*
64
+
65
- name: Publish package to PyPI
66
if: startsWith(github.event.ref, 'refs/tags')
67
0 commit comments