From e09d30476cdfbe13bb982e3587f3e17b7d2bbbe9 Mon Sep 17 00:00:00 2001 From: Bart Feenstra Date: Thu, 21 Dec 2023 17:44:37 +0000 Subject: [PATCH] Fix the Twine/PyPI username. (#1077) --- .github/workflows/release-build-setuptools.yml | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/.github/workflows/release-build-setuptools.yml b/.github/workflows/release-build-setuptools.yml index 5373389ec..d45abc8be 100644 --- a/.github/workflows/release-build-setuptools.yml +++ b/.github/workflows/release-build-setuptools.yml @@ -46,9 +46,8 @@ jobs: shell: bash - name: Publish the distributions to PyPI - run: twine upload ./dist/* + run: twine upload -u __token__ ./dist/* shell: bash env: TWINE_NON_INTERACTIVE: true - TWINE_USERNAME: ${{ secrets.TWINE_USERNAME }} TWINE_PASSWORD: ${{ secrets.TWINE_PASSWORD }}