14 lines
284 B
Bash
Executable file
14 lines
284 B
Bash
Executable file
#!/bin/bash
|
|
|
|
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
|
|
twine upload -r pypi dist/borgmatic-*.tar.gz
|
|
twine upload -r pypi dist/borgmatic-*-py3-none-any.whl
|