From 029e81b4b5739f92f0c458a8abc65ae12e76cf83 Mon Sep 17 00:00:00 2001 From: Steve Drew Date: Wed, 11 Mar 2026 14:50:24 -0600 Subject: [PATCH] Remove TestPyPI step from release pipeline Publish directly to PyPI after build, skipping TestPyPI. Co-Authored-By: Claude Opus 4.6 --- .github/workflows/release.yml | 21 +-------------------- 1 file changed, 1 insertion(+), 20 deletions(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 5f3c6a9..62cc46d 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -53,28 +53,9 @@ jobs: name: dist path: dist/ - testpypi: - name: Publish to TestPyPI - needs: build - runs-on: ubuntu-latest - environment: testpypi - permissions: - id-token: write - steps: - - name: Download build artifacts - uses: actions/download-artifact@v4 - with: - name: dist - path: dist/ - - - name: Publish to TestPyPI - uses: pypa/gh-action-pypi-publish@release/v1 - with: - repository-url: https://test.pypi.org/legacy/ - pypi: name: Publish to PyPI - needs: testpypi + needs: build runs-on: ubuntu-latest environment: pypi permissions: