Skip to content
Snippets Groups Projects
Commit 214e01f7 authored by André Anjos's avatar André Anjos :speech_balloon:
Browse files

Allow private packages to successfuly create revisions without breaking the deployment stage

parent eefa51bc
No related branches found
No related tags found
No related merge requests found
......@@ -9,9 +9,10 @@ run_cmd $(dirname ${0})/docs.sh
run_cmd $(dirname ${0})/after_docs.sh
if [ "${VISIBILITY}" != "public" ]; then
log_error "ERROR: You cannot publish a PRIVATE to PyPI"
log_error "ERROR: Make this package public before re-trying!"
exit 1
log_warn "WARNING: You cannot publish a PRIVATE to PyPI"
log_warn "WARNING: Make this package public if you wish to do so next time"
log_warn "WARNING: Stopping deployment procedure before PyPI/Conda pushes"
exit 0
fi
lock_pypirc
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment