From dd5c42770dca1e2f4c1befae247a7f4dadfcdc6f Mon Sep 17 00:00:00 2001 From: Matthias Koeppe Date: Wed, 20 Mar 2024 19:31:47 -0700 Subject: [PATCH] .github/workflows/dist.yml: Do not publish wheels to PyPI --- .github/workflows/dist.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/dist.yml b/.github/workflows/dist.yml index 6aa8294..37e7b6e 100644 --- a/.github/workflows/dist.yml +++ b/.github/workflows/dist.yml @@ -113,7 +113,8 @@ jobs: # https://github.com/pypa/gh-action-pypi-publish name: Upload wheels to PyPI needs: build_wheels - if: github.event_name == 'push' && startsWith(github.ref, 'refs/tags') + # Do not publish wheels to PyPI. + if: false runs-on: ubuntu-latest env: CAN_DEPLOY: ${{ secrets.SAGEMATH_PYPI_API_TOKEN != '' }}