borg/scripts/upload-pypi

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

19 lines
251 B
Plaintext
Raw Permalink Normal View History

#!/bin/bash
R=$1
if [ "$R" = "" ]; then
echo "Usage: upload-pypi 1.2.3 [test]"
exit
fi
if [ "$2" = "test" ]; then
2022-11-27 00:02:39 +00:00
export TWINE_REPOSITORY=testpypi
else
2022-11-27 00:02:39 +00:00
export TWINE_REPOSITORY=pypi
fi
D=dist/borgbackup-$R.tar.gz
twine upload "$D"