blob: 7ea3fa2d9f7dc14526fb72d5f946ab042b7dc4e8 [file] [log] [blame]
Vanessa Rene Valderrama295975d2018-02-27 15:10:17 -08001#!/bin/bash
2# Script to publush PyPI artifacts
3set -e -x -o pipefail
4
5virtualenv /tmp/v/twine
6source "/tmp/v/twine/bin/activate"
7
8pip install twine
9
10cd "$WORKSPACE/$TOX_DIR"
11twine upload -r $PYPI_SERVER dist/*