We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 66b3370 commit e470fbeCopy full SHA for e470fbe
4 files changed
.github/workflows/publish.yml
@@ -16,12 +16,14 @@ jobs:
16
- name: Set up Python
17
uses: actions/setup-python@v5
18
with:
19
- python-version: "3.8"
+ python-version: "3.9"
20
21
- - name: Install Poetry
22
- run: pip install --no-input poetry
+ - name: Install uv
+ uses: astral-sh/setup-uv@v6
23
+
24
+ - name: Build package
25
+ run: uv build
26
27
- name: Publish package
28
run: |
- poetry config pypi-token.pypi "${{ secrets.POETRY_PYPI_TOKEN_PYPI }}"
- poetry publish --build
29
+ uv publish
0 commit comments