Skip to content

Commit

Permalink
add pypi-publish action
Browse files Browse the repository at this point in the history
  • Loading branch information
rvhonorato committed Apr 30, 2024
1 parent 7c451d8 commit 4ccc727
Showing 1 changed file with 31 additions and 0 deletions.
31 changes: 31 additions & 0 deletions .github/workflows/pypi-publish.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
name: publish to PyPI

on:
release:
types: [published]

jobs:
pypi_release:

runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4

- uses: actions/setup-python@v4
with:
python-version: "3.11"

- uses: snok/install-poetry@v1
with:
version: 1.3.2
virtualenvs-create: true
virtualenvs-in-project: true

- run: poetry install

- run: poetry run pytest

- run: poetry config pypi-token.pypi "${{ secrets.PYPI_API_KEY }}"

- name: Publish package
run: poetry publish --build

0 comments on commit 4ccc727

Please sign in to comment.