From fd922f03d5b3e12c383f46a8026bacef5b317700 Mon Sep 17 00:00:00 2001 From: Lakshidaa Saigiridharan <33449160+Lakshidaa@users.noreply.github.com> Date: Tue, 9 Jan 2024 20:12:19 +0530 Subject: [PATCH] Add Github action to publish releases to PyPI --- .github/workflows/publish_to_pypi.yml | 34 +++++++++++++++++++++++++++ 1 file changed, 34 insertions(+) create mode 100644 .github/workflows/publish_to_pypi.yml diff --git a/.github/workflows/publish_to_pypi.yml b/.github/workflows/publish_to_pypi.yml new file mode 100644 index 0000000..3deac74 --- /dev/null +++ b/.github/workflows/publish_to_pypi.yml @@ -0,0 +1,34 @@ +name: Publish Python distributions to PyPI + +on: push + +jobs: + build-n-publish: + name: Build and publish Python distributions to PyPI + runs-on: ubuntu-latest + + steps: + - uses: actions/checkout@v3 + - name: Set up Python + uses: actions/setup-python@v4 + with: + python-version: "3.x" + - name: Install pypa/build + run: >- + python3 -m + pip install + build + --user + - name: Build a binary wheel and a source tarball + run: >- + python3 -m + build + --sdist + --wheel + --outdir dist/ + . + - name: Publish distribution to PyPI + if: startsWith(github.ref, 'refs/tags') + uses: pypa/gh-action-pypi-publish@release/v1 + with: + password: ${{ secrets.PYPI_API_TOKEN }}