From 1dc1472c551383f03d07d507b391ed11ba27518a Mon Sep 17 00:00:00 2001 From: Debanjum Singh Solanky Date: Thu, 5 Jan 2023 12:56:46 -0300 Subject: [PATCH] In publish workflow, make twine upload verbose to troubleshoot --- .github/workflows/publish.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml index 5ac81527..611a3851 100644 --- a/.github/workflows/publish.yml +++ b/.github/workflows/publish.yml @@ -53,7 +53,7 @@ jobs: rm -rf dist python -m build twine check dist/* - twine upload dist/* + twine upload --verbose dist/* - name: Publish Master to PyPI if: github.ref == 'refs/heads/master' @@ -72,7 +72,7 @@ jobs: rm -rf dist python -m build twine check dist/* - twine upload dist/* + twine upload --verbose dist/* - name: Publish PR to Test PyPI if: github.event_name == 'pull_request' @@ -92,4 +92,4 @@ jobs: rm -rf dist python -m build twine check dist/* - twine upload -r testpypi dist/* \ No newline at end of file + twine upload -r testpypi --verbose dist/* \ No newline at end of file