From b370aa54a9efdf66615d02eae9366ff1a3242756 Mon Sep 17 00:00:00 2001 From: ysicing Date: Tue, 4 Jun 2024 23:30:51 +0800 Subject: [PATCH] chore: update PyPI publishing workflow to use token authentication - Update the PyPI workflow action to use the `release/v1` version - The publishing to PyPI now uses a token instead of a password Signed-off-by: ysicing --- .github/workflows/pypi.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/pypi.yml b/.github/workflows/pypi.yml index 3156988..4003174 100644 --- a/.github/workflows/pypi.yml +++ b/.github/workflows/pypi.yml @@ -25,7 +25,7 @@ jobs: run: >- python setup.py sdist - name: Publish distribution 📦 to PyPI - uses: pypa/gh-action-pypi-publish@master + uses: pypa/gh-action-pypi-publish@release/v1 with: user: __token__ password: ${{ secrets.pypi_password }}