From 796722d0670f04443f967fa55841f59ec3273b26 Mon Sep 17 00:00:00 2001 From: Mark Bonicillo Date: Fri, 17 May 2024 14:54:11 -0700 Subject: [PATCH] Update publish-to-pypi.yml; fix python version --- .github/workflows/publish-to-pypi.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/publish-to-pypi.yml b/.github/workflows/publish-to-pypi.yml index 6c5990cd..d44e52f6 100644 --- a/.github/workflows/publish-to-pypi.yml +++ b/.github/workflows/publish-to-pypi.yml @@ -29,7 +29,7 @@ jobs: - name: Build and publish distribution 📦 to Test PyPI uses: JRubics/poetry-publish@v2.0 with: - python_version: "3.11.8" + python_version: "3.11" pypi_token: ${{ secrets.TEST_PYPI_API_TOKEN }} repository_name: "testpypi" repository_url: "https://test.pypi.org/legacy/" @@ -37,5 +37,5 @@ jobs: - name: Build and publish distribution 📦 to PyPI uses: JRubics/poetry-publish@v2.0 with: - python_version: "3.11.18" + python_version: "3.11" pypi_token: ${{ secrets.PYPI_API_TOKEN }}