From 5289225c7114ecd3cf7084e31a1b59e4adb2fb9a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Peter=20V=C3=BDboch?= <47027005+petereon@users.noreply.github.com> Date: Sat, 26 Feb 2022 16:38:58 -0500 Subject: [PATCH] build: including pypi release on release --- .github/workflows/python-publish.yml | 42 ++++++++++++++++++++++++++++ 1 file changed, 42 insertions(+) create mode 100644 .github/workflows/python-publish.yml diff --git a/.github/workflows/python-publish.yml b/.github/workflows/python-publish.yml new file mode 100644 index 0000000..4acffa6 --- /dev/null +++ b/.github/workflows/python-publish.yml @@ -0,0 +1,42 @@ +# This workflow will upload a Python Package using Twine when a release is created +# For more information see: https://help.github.com/en/actions/language-and-framework-guides/using-python-with-github-actions#publishing-to-package-registries + +# This workflow uses actions that are not certified by GitHub. +# They are provided by a third-party and are governed by +# separate terms of service, privacy policy, and support +# documentation. + +name: Upload Python Package + +on: + release: + types: [published] + +jobs: + deploy: + + runs-on: ubuntu-latest + + + steps: + - uses: actions/checkout@v2 + - name: Set up Python ${{ matrix.python-version }} + uses: actions/setup-python@v2 + with: + python-version: ${{ matrix.python-version }} + - name: Install dependencies + run: | + python -m pip install pipenv + pipenv install + - name: Build and install the library + run: | + pipenv run poetry build + pipenv run pip install ./dist/$(ls ./dist | grep .whl) + - name: Test with pytest + run: | + pipenv run pytest + - name: Publish package + uses: pypa/gh-action-pypi-publish@27b31702a0e7fc50959f5ad993c78deac1bdfc29 + with: + user: __token__ + password: ${{ secrets.PYPI_API_TOKEN }}