From a48b84cf0f53bdf6cc6d22d9f020a1b1471e991b Mon Sep 17 00:00:00 2001 From: Eleanor Lewis Date: Tue, 9 Jul 2024 14:21:59 -0700 Subject: [PATCH] use test credentials in test workflow --- .github/workflows/pypitestpublish.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/pypitestpublish.yml b/.github/workflows/pypitestpublish.yml index 1176efc..209cc27 100644 --- a/.github/workflows/pypitestpublish.yml +++ b/.github/workflows/pypitestpublish.yml @@ -23,8 +23,8 @@ jobs: pip install setuptools wheel twine - name: Build and publish env: - TWINE_USERNAME: ${{ secrets.PYPI_USERNAME }} - TWINE_PASSWORD: ${{ secrets.PYPI_PASSWORD }} + TWINE_USERNAME: ${{ secrets.PYPI_TEST_USERNAME }} + TWINE_PASSWORD: ${{ secrets.PYPI_TEST_PASSWORD }} run: | python setup.py sdist bdist_wheel install twine upload --repository testpypi dist/*