Skip to content

Commit 71f9e23

Browse files
committed
Fix release CI
1 parent 073cafa commit 71f9e23

File tree

1 file changed

+7
-3
lines changed

1 file changed

+7
-3
lines changed

.github/workflows/_release.yml

Lines changed: 7 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -22,12 +22,16 @@ jobs:
2222
2323
- name: Checkout
2424
uses: actions/checkout@v6
25+
with:
26+
# Need this to get version number from last tag
27+
fetch-depth: 0
28+
submodules: recursive
2529

26-
- name: Install python packages
27-
uses: ./.github/actions/install_requirements
30+
- name: Install uv
31+
uses: astral-sh/setup-uv@v7
2832

2933
- name: generate-schema
30-
run: techui-builder --schema
34+
run: uv run techui-builder --schema
3135

3236
- name: Create GitHub Release
3337
# We pin to the SHA, not the tag, for security reasons.

0 commit comments

Comments
 (0)