From d49919ee7a78114ae2383ac7b122764eb2877ba8 Mon Sep 17 00:00:00 2001 From: Rodrigo V Honorato Date: Fri, 26 Apr 2024 16:51:24 +0200 Subject: [PATCH] Add workflow for publishing to PyPI --- .github/workflows/pypi-publish.yml | 31 ++++++++++++++++++++++++++++++ 1 file changed, 31 insertions(+) create mode 100644 .github/workflows/pypi-publish.yml diff --git a/.github/workflows/pypi-publish.yml b/.github/workflows/pypi-publish.yml new file mode 100644 index 0000000..1a8fb25 --- /dev/null +++ b/.github/workflows/pypi-publish.yml @@ -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