Skip to content

Commit

Permalink
.github/workflows/dist.yml: Do not publish wheels to PyPI
Browse files Browse the repository at this point in the history
  • Loading branch information
Matthias Koeppe committed Mar 21, 2024
1 parent 2690bb6 commit dd5c427
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion .github/workflows/dist.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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 != '' }}
Expand Down

0 comments on commit dd5c427

Please sign in to comment.