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 1e7680e commit bcc9a68Copy full SHA for bcc9a68
.github/workflows/release.yml
@@ -11,14 +11,13 @@ jobs:
11
steps:
12
- uses: actions/checkout@v3
13
- name: Set up Python
14
- uses: actions/setup-python@v4
+ uses: astral-sh/setup-uv@v5
15
with:
16
python-version: "3.10"
17
- name: Build artifacts
18
run: |
19
- pip install -q wheel
20
- python setup.py sdist bdist_wheel
+ uvx --from build python -m build --installer uv
21
- name: Create release
22
- uses: softprops/action-gh-release@v1
+ uses: softprops/action-gh-release@v2
23
24
files: dist/*
0 commit comments