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 88d81c7 commit 980ffacCopy full SHA for 980ffac
.github/workflows/publish-package.yml
@@ -17,12 +17,12 @@ jobs:
17
with:
18
submodules: recursive
19
token: ${{ secrets.GITHUB_TOKEN }}
20
+ - name: Install uv
21
+ uses: astral-sh/setup-uv@v5
22
- name: "build"
23
env:
- POETRY_PYPI_TOKEN_PYPI: ${{ secrets.PYPI_API_TOKEN }}
24
+ UV_PUBLISH_TOKEN: ${{ secrets.PYPI_API_TOKEN }}
25
id: build
26
run: |
- curl -sSL https://install.python-poetry.org | python3 -
- poetry build
27
- poetry config pypi-token.pypi "$POETRY_PYPI_TOKEN_PYPI"
28
- poetry publish
+ uv build
+ uv publish
0 commit comments