1
0
Fork 0
mirror of https://github.com/borgbackup/borg.git synced 2024-12-22 07:43:06 +00:00
borg/scripts/upload-pypi
Thomas Waldmann 84e87239bc
fix pypi repo name in upload script
it needs to be like this to support a ~/.pypirc like this,
containing a separate upload token for the borgbackup project:

[distutils]
index-servers =
    borgbackup
    ...

[borgbackup]
repository = https://upload.pypi.org/legacy/
username = __token__
password = pypi-...(token)...
2024-07-20 17:47:59 +02:00

18 lines
261 B
Bash
Executable file

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