From d49f437b53c56ecc77f4a6eae318067ad5b20577 Mon Sep 17 00:00:00 2001 From: Cyril Achard Date: Mon, 23 Mar 2026 09:00:12 -0500 Subject: [PATCH] Enable verbose output for twine upload Add the --verbose flag to the Twine upload command in the GitHub Actions workflow to produce more detailed logs during package publishing. The step remains non-interactive and continues to skip existing distributions to aid debugging of upload issues. --- .github/workflows/python-package.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/python-package.yml b/.github/workflows/python-package.yml index a1c83cb..0a9c58d 100644 --- a/.github/workflows/python-package.yml +++ b/.github/workflows/python-package.yml @@ -200,4 +200,4 @@ jobs: env: TWINE_USERNAME: __token__ TWINE_PASSWORD: ${{ secrets.TWINE_API_KEY }} - run: python -m twine upload --non-interactive --skip-existing dist/* + run: python -m twine upload --non-interactive --verbose --skip-existing dist/*