Skip to content

Commit f0d9d94

Browse files
authored
Merge pull request #1098 from c-bata/fix-release-actions
Run `uv venv` in release workflows
2 parents d76604a + 8004227 commit f0d9d94

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

.github/workflows/github-release.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,7 @@ jobs:
2424

2525
- name: Install dependencies
2626
run: |
27+
uv venv
2728
uv pip install wheel twine build
2829
2930
- run: make python-package

.github/workflows/pypi-publish.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ jobs:
2323
python-version: '3.12'
2424
- name: Install dependencies
2525
run: |
26-
uv pip install --upgrade pip setuptools
26+
uv venv
2727
uv pip install wheel twine build
2828
2929
- run: make python-package

0 commit comments

Comments
 (0)