Skip to content

Commit

Permalink
Install Poetry in release workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
RobbeSneyders committed Oct 25, 2023
1 parent 27200a0 commit c1b20cf
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,9 @@ jobs:
run: sed -i "s/version = .*/version = '${{github.ref_name}}'/" pyproject.toml

- name: Build a binary wheel and a source tarball
run: poetry build
run: |
pip install poetry
poetry build
- name: Publish distribution 📦 to Test PyPI
if: github.event_name == 'push'
Expand Down

0 comments on commit c1b20cf

Please sign in to comment.