From 4e34ae9eb3786d675408e8c4e3d7e8012cb813c1 Mon Sep 17 00:00:00 2001 From: Andrew McCluskey Date: Thu, 6 Jan 2022 10:40:26 +0100 Subject: [PATCH] Add the release workflow --- .github/workflows/release.yml | 35 +++++++++++++++++++++++++++++++++++ 1 file changed, 35 insertions(+) create mode 100644 .github/workflows/release.yml diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml new file mode 100644 index 0000000..aeaadc7 --- /dev/null +++ b/.github/workflows/release.yml @@ -0,0 +1,35 @@ +name: publish python distribution to pypi + +on: + release: + types: [published] + +jobs: + build-n-publish: + name: build and publish to pypi + runs-on: ubuntu-18.04 + steps: + - uses: actions/checkout@master + - name: setup python 3.7 + uses: actions/setup-python@v2 + with: + python-version: 3.7 + - name: install pypa/build + run: >- + python -m + pip install + build + --user + - name: build a binary wheel and source tarball + run: >- + python -m + build + --sdist + --wheel + --outdir dist/ + . + - name: Publish distribution 📦 to PyPI + if: startsWith(github.ref, 'refs/tags') + uses: pypa/gh-action-pypi-publish@master + with: + password: ${{ secrets.PYPI_API_TOKEN }} \ No newline at end of file