diff --git a/.github/workflows/pypi.yml b/.github/workflows/pypi.yml new file mode 100644 index 0000000..4a91652 --- /dev/null +++ b/.github/workflows/pypi.yml @@ -0,0 +1,35 @@ +name: Publish Python distribution to PyPI +on: + release: + types: + - created + +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 }}