55: Fix for missing tags/releases from Gitea and GitHub project hosting.

This commit is contained in:
Dan Helfman 2018-01-17 20:27:09 -08:00
parent 389778c716
commit cc1d6f53a0
3 changed files with 8 additions and 2 deletions

1
NEWS
View File

@ -1,5 +1,6 @@
1.1.15.dev0
* Support for Borg BORG_PASSCOMMAND environment variable to read a password from an external file.
* #55: Fix for missing tags/releases from Gitea and GitHub project hosting.
1.1.14
* #49: Fix for typo in --patterns-from option.

View File

@ -2,5 +2,5 @@
set -e
git push -u origin
git push -u github
git push -u origin master
git push -u github master

View File

@ -2,6 +2,11 @@
set -e
version=$(head --lines=1 NEWS)
git tag $version
git push origin $version
git push github $version
rm -fr dist
python3 setup.py bdist_wheel
python3 setup.py sdist