From 4eec5253deb6eb2d05bbac0b479239ba12139a53 Mon Sep 17 00:00:00 2001 From: peppelinux Date: Thu, 25 Mar 2021 08:58:05 +0100 Subject: [PATCH] pypi workflow --- .github/workflows/pypy.yml | 35 +++++++++++++++++++++++++++++++++++ 1 file changed, 35 insertions(+) create mode 100644 .github/workflows/pypy.yml diff --git a/.github/workflows/pypy.yml b/.github/workflows/pypy.yml new file mode 100644 index 00000000..4a916526 --- /dev/null +++ b/.github/workflows/pypy.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 }}