Skip to content

Commit 384b732

Browse files
committed
gha: use uv in release workflow
1 parent 1318463 commit 384b732

File tree

1 file changed

+7
-7
lines changed

1 file changed

+7
-7
lines changed

.github/workflows/release.yaml

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -21,19 +21,19 @@ jobs:
2121
with:
2222
fetch-depth: 0
2323

24-
- name: Set up Python 3.10
25-
uses: actions/setup-python@v5
24+
- name: Install the latest version of uv
25+
uses: astral-sh/setup-uv@v5
2626
with:
27-
python-version: "3.10"
27+
version: "latest"
28+
python-version: 3.12
2829

29-
- name: Upgrade pip and nox
30+
- name: Install nox
3031
run: |
31-
pip install --upgrade pip nox
32-
pip --version
32+
uv pip install nox
3333
nox --version
3434
3535
- name: Build package
36-
run: nox -s build-3.10
36+
run: nox -s build-3.12
3737

3838
- name: Upload package
3939
if: github.event_name == 'release'

0 commit comments

Comments
 (0)