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