From cf99b228ae410a4112e8c5b4cceec8b79e61bb4e Mon Sep 17 00:00:00 2001 From: Nikolai Kondrashov Date: Thu, 8 Jan 2026 12:33:57 +0200 Subject: [PATCH] Actions: Publish straight to PyPI Drop publishing the package to TestPyPI so we don't have a conflict over public attestation, and don't have to change the package name to avoid it. It's not like we actually do any testing between TestPyPI and PyPI anyway. --- .github/workflows/main.yml | 8 +------- 1 file changed, 1 insertion(+), 7 deletions(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index a715f25..9b85d57 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -71,14 +71,8 @@ jobs: - name: Check package with twine run: twine check dist/* - - name: Publish to TestPyPI - uses: pypa/gh-action-pypi-publish@release/v1 - with: - repository-url: https://test.pypi.org/legacy/ - skip-existing: true - verbose: true - - name: Publish to PyPI uses: pypa/gh-action-pypi-publish@release/v1 with: skip-existing: true + verbose: true