In publish workflow, make twine upload verbose to troubleshoot

This commit is contained in:
Debanjum Singh Solanky
2023-01-05 12:56:46 -03:00
parent e792523849
commit 1dc1472c55

View File

@@ -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/*
twine upload -r testpypi --verbose dist/*