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 5a8ab0e commit 04b6fcaCopy full SHA for 04b6fca
1 file changed
.github/workflows/release.yml
@@ -21,6 +21,10 @@ jobs:
21
enable-cache: false
22
python-version: "3.12"
23
version: "latest"
24
- - run: uv version "${GITHUB_REF_NAME}"
25
- - run: uv build
26
- - run: uv publish --trusted-publishing always
+ - name: Publish
+ env:
+ UV_PUBLISH_TOKEN: ${{ secrets.PYPI_TOKEN }}
27
+ run: |
28
+ uv version "${GITHUB_REF_NAME}"
29
+ uv build
30
+ uv publish
0 commit comments