From 1e2674b49b710f645bb5ee1db34c3464d9d80045 Mon Sep 17 00:00:00 2001 From: Emad Rad Date: Mon, 22 Jul 2024 01:39:28 +0330 Subject: [PATCH] fix: master branch sunset 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/publish_pypi.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/publish_pypi.yml b/.github/workflows/publish_pypi.yml index 4358817..a47eb5a 100644 --- a/.github/workflows/publish_pypi.yml +++ b/.github/workflows/publish_pypi.yml @@ -25,7 +25,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 }}