Gitiles
Code Review
Sign In
gerrit.nordix.org
/
onap
/
ci-management
/
701875b95b50ee40d2116cc6b4bc570741b7d327
/
.
/
shell
/
pypi-publish.sh
blob: 7ea3fa2d9f7dc14526fb72d5f946ab042b7dc4e8 [
file
] [
log
] [
blame
]
#!/bin/bash
# Script to publush PyPI artifacts
set
-
e
-
x
-
o pipefail
virtualenv
/
tmp
/
v
/
twine
source
"/tmp/v/twine/bin/activate"
pip install twine
cd
"$WORKSPACE/$TOX_DIR"
twine upload
-
r $PYPI_SERVER dist
/*