From 7aca76f3785feaf202171acea94f4e181a802bdc Mon Sep 17 00:00:00 2001 From: Tyler Krehbiel <39509337+tkrebes@users.noreply.github.com> Date: Wed, 24 Sep 2025 12:35:52 -0500 Subject: [PATCH] Remove password input for PyPI publish step --- .github/workflows/publish-to-pypi.yml | 3 --- 1 file changed, 3 deletions(-) diff --git a/.github/workflows/publish-to-pypi.yml b/.github/workflows/publish-to-pypi.yml index 89ae286..03c2ff8 100644 --- a/.github/workflows/publish-to-pypi.yml +++ b/.github/workflows/publish-to-pypi.yml @@ -32,12 +32,9 @@ jobs: - name: Publish distribution to Test PyPI uses: pypa/gh-action-pypi-publish@release/v1 with: - password: ${{ secrets.test_pypi_password }} repository-url: https://test.pypi.org/legacy/ continue-on-error: true - name: Publish distribution to PyPI if: github.event.action == 'published' uses: pypa/gh-action-pypi-publish@release/v1 - with: - password: ${{ secrets.pypi_password }} \ No newline at end of file