From 918cb120cfb3e14b9632ab626212fae7ba5ce6dd Mon Sep 17 00:00:00 2001 From: Emad Rad Date: Thu, 1 Aug 2024 17:08:53 +0330 Subject: [PATCH] fix: master branch sunset (#377) As it mentioned in the gh-action-pypi-publish repo, the master branch version has been sunset and we should use release/v1. --- .github/workflows/pypi-publish.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/pypi-publish.yml b/.github/workflows/pypi-publish.yml index 989d08cc..a0caedb2 100644 --- a/.github/workflows/pypi-publish.yml +++ b/.github/workflows/pypi-publish.yml @@ -24,7 +24,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 }}