Skip to content

Commit

Permalink
Try to fix release workflow not picking up venv
Browse files Browse the repository at this point in the history
  • Loading branch information
piotr-grodek-dsai committed Nov 3, 2023
1 parent e47518c commit fb3ff04
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,10 +25,13 @@ jobs:
run: python -m pip install -U build

- name: Bump version as release
run: ./bump_version.sh release
run: |
source venv/bin/activate
./bump_version.sh release
- name: Build package
run: |
source venv/bin/activate
python -m build
- name: Publish package distributions to PyPI
Expand Down

0 comments on commit fb3ff04

Please sign in to comment.