Skip to content

Commit d45cb7e

Browse files
committed
Fix python publishing gh action
1 parent 189ea46 commit d45cb7e

File tree

1 file changed

+5
-2
lines changed

1 file changed

+5
-2
lines changed

.github/workflows/publish.yml

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,11 +22,14 @@ jobs:
2222
2323
- name: Install build dependencies
2424
run: |
25-
uv venv
25+
uv venv .venv
26+
source .venv/bin/activate
2627
uv pip install build hatchling
2728
2829
- name: Build package
29-
run: uv pip run python -m build
30+
run: |
31+
source .venv/bin/activate
32+
python -m build
3033
3134
- name: Store dist artifacts
3235
uses: actions/upload-artifact@v4

0 commit comments

Comments
 (0)