Skip to content

Commit ceceb50

Browse files
committed
Fix release CI
1 parent 073cafa commit ceceb50

File tree

1 file changed

+10
-2
lines changed

1 file changed

+10
-2
lines changed

.github/workflows/_release.yml

Lines changed: 10 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,9 +22,17 @@ 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
29+
30+
- name: Install uv
31+
uses: astral-sh/setup-uv@v7
2532

26-
- name: Install python packages
27-
uses: ./.github/actions/install_requirements
33+
- name: Install packages
34+
run: uv sync --locked
35+
shell: bash
2836

2937
- name: generate-schema
3038
run: techui-builder --schema

0 commit comments

Comments
 (0)