Skip to content

Commit 90ed49e

Browse files
committed
fix(ci): install uv in release workflow prepare steps
The create.test.ts tests require uv for Python project scaffolding. The Build and Test workflow installs it via astral-sh/setup-uv, but the release workflow's prepare steps were missing it, causing test failures during the snapshot update step.
1 parent 227c840 commit 90ed49e

1 file changed

Lines changed: 6 additions & 0 deletions

File tree

.github/workflows/release-main-and-preview.yml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -99,6 +99,9 @@ jobs:
9999
with:
100100
node-version: 20.x
101101

102+
- name: Install uv
103+
uses: astral-sh/setup-uv@v7
104+
102105
- name: Configure git
103106
run: |
104107
git config --global user.name "github-actions[bot]"
@@ -198,6 +201,9 @@ jobs:
198201
with:
199202
node-version: 20.x
200203

204+
- name: Install uv
205+
uses: astral-sh/setup-uv@v7
206+
201207
- name: Configure git
202208
run: |
203209
git config --global user.name "github-actions[bot]"

0 commit comments

Comments
 (0)