Skip to content

Commit

Permalink
Add GitHub Actions workflows for publishing to Test PyPI and PyPI (#407)
Browse files Browse the repository at this point in the history
* Add GitHub Actions workflows for publishing to Test PyPI and PyPI

* remove test pypi upload

* update pypi-publish
  • Loading branch information
rvhonorato authored May 7, 2024
1 parent 7082f85 commit 9f12e83
Showing 1 changed file with 30 additions and 0 deletions.
30 changes: 30 additions & 0 deletions .github/workflows/pypi-publish.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
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 9f12e83

Please sign in to comment.