From 9aef66b320e0df5a21a6cf931f619b048dc8ff80 Mon Sep 17 00:00:00 2001 From: ThatXliner Date: Mon, 16 Nov 2020 11:56:26 -0800 Subject: [PATCH] :octocat: Created publishing workflow --- .github/workflows/python-publish.yml | 30 ++++++++++++++++++++++++++++ 1 file changed, 30 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..b9406ef --- /dev/null +++ b/.github/workflows/python-publish.yml @@ -0,0 +1,30 @@ +# This workflows will upload a Python Package using Poetry 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 + +name: Upload Python Package + +on: + release: + types: [created] + +jobs: + deploy: + + runs-on: ubuntu-latest + + steps: + - uses: actions/checkout@v2 + - name: Set up Python + uses: actions/setup-python@v2 + with: + python-version: '3.6' + - name: Install dependencies + run: | + python -m pip install --upgrade pip poetry + - name: Build and publish + env: + POETRY_USERNAME: ${{ secrets.PYPI_USERNAME }} + POETRY_PASSWORD: ${{ secrets.PYPI_PASSWORD }} + run: | + poetry build + poetry publish --username $POETRY_USERNAME --password $POETRY_PASSWORD