release 284 B

1234567891011121314
  1. #!/bin/bash
  2. set -e
  3. version=$(head --lines=1 NEWS)
  4. git tag $version
  5. git push origin $version
  6. git push github $version
  7. rm -fr dist
  8. python3 setup.py bdist_wheel
  9. python3 setup.py sdist
  10. twine upload -r pypi dist/borgmatic-*.tar.gz
  11. twine upload -r pypi dist/borgmatic-*-py3-none-any.whl