From 8451161bc773f90725b7f082b4fa0eae60f8bfa2 Mon Sep 17 00:00:00 2001 From: Emad Rad Date: Mon, 22 Jul 2024 01:50:48 +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/release.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 683978d..d987c45 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -84,7 +84,7 @@ jobs: - name: Publish to PyPi if: env.NEXT_VERSION - uses: pypa/gh-action-pypi-publish@master + uses: pypa/gh-action-pypi-publish@release/v1 with: user: __token__ password: ${{ secrets.PYPI_UPLOAD_TOKEN }}