Gitiles
Code Review
Sign In
gerrit.nordix.org
/
onap
/
ci-management
/
c790b79ecfea0fe81f9f4fca6210ae7b81816181
/
.
/
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
/*