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 66c6852 commit 12c34b2Copy full SHA for 12c34b2
.github/workflows/release.yaml
@@ -15,12 +15,14 @@ jobs:
15
uses: actions/setup-python@v5
16
with:
17
python-version: "3.8"
18
- - name: Install poetry
19
- uses: abatilo/actions-poetry@v4
20
- - name: Version poetry package
21
- run: poetry version "${{ github.ref_name }}"
22
- - name: Build poetry package
23
- run: poetry build
+ - name: Install uv
+ uses: astral-sh/setup-uv@v5
+ with:
+ version: "0.7.6"
+ - name: Version uv package
+ run: uv version "${{ github.ref_name }}"
24
+ - name: Build uv package
25
+ run: uv build
26
- name: Publish distribution 📦 to PyPI
27
uses: pypa/gh-action-pypi-publish@release/v1
28
0 commit comments