diff --git a/scripts/push b/scripts/push new file mode 100755 index 000000000..1aba7ec2c --- /dev/null +++ b/scripts/push @@ -0,0 +1,6 @@ +#!/bin/bash + +set -e + +git push -u origin +git push -u github diff --git a/scripts/release b/scripts/release new file mode 100755 index 000000000..288e8415f --- /dev/null +++ b/scripts/release @@ -0,0 +1,9 @@ +#!/bin/bash + +set -e + +rm -fr dist +python3 setup.py bdist_wheel +python3 setup.py sdist +twine upload -r pypi dist/borgmatic-*.tar.gz +twine upload -r pypi dist/borgmatic-*-py3-none-any.whl