We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 073cafa commit 71f9e23Copy full SHA for 71f9e23
.github/workflows/_release.yml
@@ -22,12 +22,16 @@ jobs:
22
23
- name: Checkout
24
uses: actions/checkout@v6
25
+ with:
26
+ # Need this to get version number from last tag
27
+ fetch-depth: 0
28
+ submodules: recursive
29
- - name: Install python packages
- uses: ./.github/actions/install_requirements
30
+ - name: Install uv
31
+ uses: astral-sh/setup-uv@v7
32
33
- name: generate-schema
- run: techui-builder --schema
34
+ run: uv run techui-builder --schema
35
36
- name: Create GitHub Release
37
# We pin to the SHA, not the tag, for security reasons.
0 commit comments