From d6dd83414cf8302eae8e1965875cda9490f366dd Mon Sep 17 00:00:00 2001 From: Feanil Patel Date: Mon, 22 Jul 2024 10:58:37 -0400 Subject: [PATCH] fix: master branch sunset (#182) As it mentioned in the gh-action-pypi-publish repo, the master branch version has been sunset and we should use release/v1. Co-authored-by: Emad Rad --- .github/workflows/pypi-release.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/pypi-release.yml b/.github/workflows/pypi-release.yml index e5746cb10..fab5233e5 100644 --- a/.github/workflows/pypi-release.yml +++ b/.github/workflows/pypi-release.yml @@ -27,7 +27,7 @@ jobs: run: python setup.py sdist bdist_wheel - name: Publish to PyPi - uses: pypa/gh-action-pypi-publish@master + uses: pypa/gh-action-pypi-publish@release/v1 with: user: __token__ password: ${{ secrets.PYPI_UPLOAD_TOKEN }}