8 lines
168 B
Bash
Executable File
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
|