We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4aab559 commit f095902Copy full SHA for f095902
.github/workflows/release.yml
@@ -7,7 +7,6 @@ on:
7
8
permissions:
9
contents: read
10
- id-token: write # For Trusted Publisher
11
12
jobs:
13
deploy:
@@ -58,7 +57,7 @@ jobs:
58
57
if: ${{github.event_name == 'workflow_dispatch'}}
59
shell: bash
60
env:
61
- UV_PUBLISH_URL: https://test.pypi.org/legacy/
+ UV_PUBLISH_TOKEN: ${{ secrets.TEST_PYPI_API_TOKEN }}
62
run: |
63
set -eux
64
- uv publish --publish-url https://test.pypi.org/legacy/ --trusted-publishing always
+ uv publish --publish-url https://test.pypi.org/legacy/ --token $UV_PUBLISH_TOKEN
0 commit comments