Skip to content

Commit fb3ff04

Browse files
Try to fix release workflow not picking up venv
1 parent e47518c commit fb3ff04

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

.github/workflows/release.yml

+4-1
Original file line numberDiff line numberDiff line change
@@ -25,10 +25,13 @@ jobs:
2525
run: python -m pip install -U build
2626

2727
- name: Bump version as release
28-
run: ./bump_version.sh release
28+
run: |
29+
source venv/bin/activate
30+
./bump_version.sh release
2931
3032
- name: Build package
3133
run: |
34+
source venv/bin/activate
3235
python -m build
3336
3437
- name: Publish package distributions to PyPI

0 commit comments

Comments
 (0)