55: Fix for missing tags/releases from Gitea and GitHub project hosting.
This commit is contained in:
parent
389778c716
commit
cc1d6f53a0
3 changed files with 8 additions and 2 deletions
1
NEWS
1
NEWS
|
@ -1,5 +1,6 @@
|
||||||
1.1.15.dev0
|
1.1.15.dev0
|
||||||
* Support for Borg BORG_PASSCOMMAND environment variable to read a password from an external file.
|
* 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
|
1.1.14
|
||||||
* #49: Fix for typo in --patterns-from option.
|
* #49: Fix for typo in --patterns-from option.
|
||||||
|
|
|
@ -2,5 +2,5 @@
|
||||||
|
|
||||||
set -e
|
set -e
|
||||||
|
|
||||||
git push -u origin
|
git push -u origin master
|
||||||
git push -u github
|
git push -u github master
|
||||||
|
|
|
@ -2,6 +2,11 @@
|
||||||
|
|
||||||
set -e
|
set -e
|
||||||
|
|
||||||
|
version=$(head --lines=1 NEWS)
|
||||||
|
git tag $version
|
||||||
|
git push origin $version
|
||||||
|
git push github $version
|
||||||
|
|
||||||
rm -fr dist
|
rm -fr dist
|
||||||
python3 setup.py bdist_wheel
|
python3 setup.py bdist_wheel
|
||||||
python3 setup.py sdist
|
python3 setup.py sdist
|
||||||
|
|
Loading…
Reference in a new issue