Skip to content

Commit d49f437

Browse files
committed
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.
1 parent 645720b commit d49f437

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

.github/workflows/python-package.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -200,4 +200,4 @@ jobs:
200200
env:
201201
TWINE_USERNAME: __token__
202202
TWINE_PASSWORD: ${{ secrets.TWINE_API_KEY }}
203-
run: python -m twine upload --non-interactive --skip-existing dist/*
203+
run: python -m twine upload --non-interactive --verbose --skip-existing dist/*

0 commit comments

Comments
 (0)