From d4a5e2a7294f6e4e81ddad3964588103f102302c Mon Sep 17 00:00:00 2001 From: Roland Hedberg Date: Thu, 11 Nov 2021 20:21:20 +0100 Subject: [PATCH] Publish Python distribution to PyPI --- .github/workflows/pypi.yml | 35 +++++++++++++++++++++++++++++++++++ 1 file changed, 35 insertions(+) create mode 100644 .github/workflows/pypi.yml diff --git a/.github/workflows/pypi.yml b/.github/workflows/pypi.yml new file mode 100644 index 0000000..bb9da86 --- /dev/null +++ b/.github/workflows/pypi.yml @@ -0,0 +1,35 @@ +name: Publish Python distribution to PyPI +on: + release: + types: + - published + +jobs: + build-n-publish: + name: Publish Python distribution to PyPI + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@master + - name: Setup Python 3.8 + uses: actions/setup-python@v1 + with: + python-version: 3.8 + - name: Install pypa/build + run: >- + python -m + pip install + build + --user + - name: Build a binary wheel and a source tarball + run: >- + python -m + build + --sdist + --wheel + --outdir dist/ + . + - name: Publish distribution to PyPI + uses: pypa/gh-action-pypi-publish@master + with: + user: __token__ + password: ${{ secrets.PYPI_API_TOKEN }}