mirror of
https://github.com/khoaliber/khoj.git
synced 2026-03-09 21:29:11 +00:00
In publish workflow, make twine upload verbose to troubleshoot
This commit is contained in:
6
.github/workflows/publish.yml
vendored
6
.github/workflows/publish.yml
vendored
@@ -53,7 +53,7 @@ jobs:
|
|||||||
rm -rf dist
|
rm -rf dist
|
||||||
python -m build
|
python -m build
|
||||||
twine check dist/*
|
twine check dist/*
|
||||||
twine upload dist/*
|
twine upload --verbose dist/*
|
||||||
|
|
||||||
- name: Publish Master to PyPI
|
- name: Publish Master to PyPI
|
||||||
if: github.ref == 'refs/heads/master'
|
if: github.ref == 'refs/heads/master'
|
||||||
@@ -72,7 +72,7 @@ jobs:
|
|||||||
rm -rf dist
|
rm -rf dist
|
||||||
python -m build
|
python -m build
|
||||||
twine check dist/*
|
twine check dist/*
|
||||||
twine upload dist/*
|
twine upload --verbose dist/*
|
||||||
|
|
||||||
- name: Publish PR to Test PyPI
|
- name: Publish PR to Test PyPI
|
||||||
if: github.event_name == 'pull_request'
|
if: github.event_name == 'pull_request'
|
||||||
@@ -92,4 +92,4 @@ jobs:
|
|||||||
rm -rf dist
|
rm -rf dist
|
||||||
python -m build
|
python -m build
|
||||||
twine check dist/*
|
twine check dist/*
|
||||||
twine upload -r testpypi dist/*
|
twine upload -r testpypi --verbose dist/*
|
||||||
Reference in New Issue
Block a user