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