1
0
Fork 0
mirror of https://github.com/borgbackup/borg.git synced 2024-12-21 23:33:07 +00:00

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)...
This commit is contained in:
Thomas Waldmann 2024-07-20 17:47:59 +02:00
parent 7aabe8204c
commit 84e87239bc
No known key found for this signature in database
GPG key ID: 243ACFA951F78E01

View file

@ -8,11 +8,11 @@ if [ "$R" = "" ]; then
fi
if [ "$2" = "test" ]; then
export TWINE_REPOSITORY=testpypi
export TWINE_REPOSITORY=borgbackuptest
else
export TWINE_REPOSITORY=pypi
export TWINE_REPOSITORY=borgbackup
fi
D=dist/borgbackup-$R.tar.gz
twine upload "$D"
twine upload $D