From 4ccc7276da841ce20fdc41482ae91701b473e838 Mon Sep 17 00:00:00 2001 From: Rodrigo V Honorato Date: Tue, 30 Apr 2024 17:41:12 +0200 Subject: [PATCH] add pypi-publish action --- .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..84ca294 --- /dev/null +++ b/.github/workflows/pypi-publish.yml @@ -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