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 8fab439 commit 225ea0eCopy full SHA for 225ea0e
.github/workflows/release.yml
@@ -27,20 +27,13 @@ jobs:
27
- name: Create env
28
run: hatch env create
29
30
- - name: Source env
31
- run: source $(hatch env find)/bin/activate
32
-
33
- - name: Install uv
34
- run: pip install uv
35
36
- - name: Install dev deps
37
- run: uv sync --active --extra dev
38
39
- - name: Build package
40
- run: hatch build
41
42
- - name: Build Linux Dist
43
- run: bash scripts/build/build_binaries_linux.sh
+ - name: Source and build
+ run: |
+ source $(hatch env find)/bin/activate
+ pip install uv
+ uv sync --active --extra dev
+ hatch build
+ bash scripts/build/build_binaries_linux.sh
44
45
- name: Get release tag
46
id: tag
0 commit comments