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