From 4ececf2b1d380a0b16994e545c85b4f1d6ffe297 Mon Sep 17 00:00:00 2001 From: Qiaolin Yu Date: Fri, 24 Jul 2026 14:54:07 -0700 Subject: [PATCH] [chore] Add verbose flag to twine upload command (#32349) --- .github/workflows/release-pypi.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/release-pypi.yml b/.github/workflows/release-pypi.yml index 050f1c044..6fffb2f6b 100644 --- a/.github/workflows/release-pypi.yml +++ b/.github/workflows/release-pypi.yml @@ -113,4 +113,4 @@ jobs: pip install twine # --skip-existing makes partial reruns safe (e.g. one arch failed, # rerun only the failed shard without re-uploading already-published wheels). - python3 -m twine upload --skip-existing dist/*.whl -u __token__ -p ${{ secrets.PYPI_TOKEN }} + python3 -m twine upload --verbose --skip-existing dist/*.whl -u __token__ -p ${{ secrets.PYPI_TOKEN }}