Skip to content

Commit

Permalink
Add action to automatically publish to pypi (#25)
Browse files Browse the repository at this point in the history
* remove requirements.txt

* re-organize repository

* rename action

* update readme.md

* add .howfairis

* update ci.yml

* Add workflow for publishing to PyPI
  • Loading branch information
rvhonorato committed Apr 26, 2024
1 parent 1cc2aa6 commit 926160b
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:
name: Builds Using Poetry and Publishes to PyPI
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 926160b

Please sign in to comment.