aboutsummaryrefslogtreecommitdiffstatshomepage
diff options
context:
space:
mode:
-rw-r--r--.github/workflows/publish.yml4
1 files changed, 3 insertions, 1 deletions
diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml
index bc8aefe..7bc9ab0 100644
--- a/.github/workflows/publish.yml
+++ b/.github/workflows/publish.yml
@@ -110,12 +110,14 @@ jobs:
name: dist
path: dist/
+ - name: Install twine
+ run: pip install
- name: Publish to TestPyPI
env:
TWINE_USERNAME: __token__
TWINE_PASSWORD: ${{ secrets.TEST_PYPI_TOKEN }}
run: |
- uv run twine upload --repository-url https://test.pypi.org/legacy/ --skip-existing --verbose dist/*
+ twine upload --repository-url https://test.pypi.org/legacy/ --skip-existing --verbose dist/*
publish-pypi:
name: Publish to PyPI