Skip to content

Commit

Permalink
chore: configure Poetry for publishing to PyPI in CI workflow (#11)
Browse files Browse the repository at this point in the history
  • Loading branch information
Barabazs authored May 3, 2024
1 parent 47f9408 commit aaef6b3
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion .github/workflows/build-and-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,9 @@ jobs:
poetry install
- name: Poetry publish
run: poetry publish --build
run: |
poetry config pypi-token.pypi "${{ secrets.PYPI_API_TOKEN }}"
poetry publish --build
- name: Release to Github
uses: softprops/action-gh-release@v1
Expand Down

0 comments on commit aaef6b3

Please sign in to comment.