From 700f3a1adddafe354c8cbda11eb4a83a9127c639 Mon Sep 17 00:00:00 2001 From: "Saigiridharan, Lakshidaa" Date: Tue, 19 Sep 2023 07:14:02 +0000 Subject: [PATCH 1/2] Publish package distribution 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..6f524c1 --- /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: "1.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 }} \ No newline at end of file From ea2fb4ae0a19dd057c352bc5adef1c73eb52c272 Mon Sep 17 00:00:00 2001 From: "Saigiridharan, Lakshidaa" Date: Tue, 19 Sep 2023 07:32:08 +0000 Subject: [PATCH 2/2] Fix typo in python version --- .github/workflows/publish_to_pypi.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/publish_to_pypi.yml b/.github/workflows/publish_to_pypi.yml index 6f524c1..7200043 100644 --- a/.github/workflows/publish_to_pypi.yml +++ b/.github/workflows/publish_to_pypi.yml @@ -12,7 +12,7 @@ jobs: - name: Set up Python uses: actions/setup-python@v4 with: - python-version: "1.x" + python-version: "3.x" - name: Install pypa/build run: >- python3 -m