We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 73378b8 commit 4d6a975Copy full SHA for 4d6a975
.github/workflows/release.yml
@@ -23,7 +23,7 @@ jobs:
23
uv build
24
- name: Publish package on PyPI
25
if: ${{ inputs.release_enabled }}
26
- run: uv publish dist/*
+ run: uv publish --username __token__ --password ${{secrets.PYPI_TOKEN}} dist/*
27
- name: Publish the release notes
28
29
uses: release-drafter/release-drafter@v6
.github/workflows/test-release.yml
@@ -31,7 +31,8 @@ jobs:
31
run: |
32
33
- name: Publish package on TestPyPI
34
- run: uv publish --index testpypi dist/*
+ run: uv publish --index testpypi --username __token__ --password ${{secrets.TEST_PYPI_TOKEN}}
35
+ dist/*
36
37
38
with:
0 commit comments