Skip to content

Commit 2463ea5

Browse files
authored
Fix: fix publish CI (#578)
## Description Publish CI is failing due to missing `uv` installation. This fixes it.
1 parent a6e512a commit 2463ea5

File tree

1 file changed

+7
-2
lines changed

1 file changed

+7
-2
lines changed

.github/workflows/ci.yml

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -72,8 +72,13 @@ jobs:
7272
with:
7373
fetch-depth: 0
7474

75-
- name: Install Python 3.12
76-
run: uv python install 3.12
75+
- name: Install uv
76+
uses: astral-sh/setup-uv@v6
77+
with:
78+
# Install a specific version of uv.
79+
version: "0.9.0"
80+
enable-cache: true
81+
python-version: 3.12
7782

7883
- name: Build
7984
run: uv build

0 commit comments

Comments
 (0)