From 8106871350b23fdd9ee5a913a108f63c090e72e7 Mon Sep 17 00:00:00 2001 From: skshetry Date: Sun, 21 Aug 2022 19:04:08 +0545 Subject: [PATCH] [skip ci]: use pypa/gh-action-pypi-publish@release/v1 See https://github.com/pypa/gh-action-pypi-publish#-master-branch-sunset-. > The master branch version has been sunset. Please, change the GitHub Action version you use from master to release/v1 or use an exact tag, or a full Git commit SHA. Also drops `__token__`, which does not need to be specified as it's the default --- .github/workflows/package.yaml | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/.github/workflows/package.yaml b/.github/workflows/package.yaml index 99c22c90..fa394692 100644 --- a/.github/workflows/package.yaml +++ b/.github/workflows/package.yaml @@ -21,7 +21,6 @@ jobs: run: ./scripts/build_package.sh - name: Publish packages to PyPI if: github.event_name == 'release' - uses: pypa/gh-action-pypi-publish@master + uses: pypa/gh-action-pypi-publish@release/v1 with: - user: __token__ password: ${{ secrets.PYPI_TOKEN }}