From c165d92a2fe8a52b18146f1a02033cc27662ae42 Mon Sep 17 00:00:00 2001 From: dawkaka Date: Tue, 16 Jul 2024 21:46:25 +0000 Subject: [PATCH] update some thing --- .github/workflows/release_package.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/release_package.yml b/.github/workflows/release_package.yml index 5e2342a..d0377b6 100644 --- a/.github/workflows/release_package.yml +++ b/.github/workflows/release_package.yml @@ -73,12 +73,12 @@ jobs: - name: Build package run: python setup.py sdist bdist_wheel - # Publish to PyPI - name: Publish to PyPI env: - TWINE_USERNAME: "__token__" - TWINE_PASSWORD: ${{ secrets.TWINE_PASSWORD }} - run: twine upload dist/* + TWINE_USERNAME: __token__ + TWINE_PASSWORD: ${{ secrets.PYPI_API_TOKEN }} + run: | + python -m twine upload dist/* # Read version changelog - id: get-changelog