Files
deb-python-falcon/tools/publish.sh
Kurt Griffiths 7543ff7f04 Merge pull request #766 from kgriffs/release-management
chore(publish): Split publish script into build and publish steps
2016-04-28 17:42:52 -06:00

8 lines
168 B
Bash
Executable File

DIST_DIR=./dist
read -p "Sign and upload $DIST_DIR/* to PyPI? [y/N]: " CONTINUE
if [[ $CONTINUE =~ ^[Yy]$ ]]; then
twine upload -s --skip-existing $DIST_DIR/*
fi