Adding push and release scripts.
This commit is contained in:
parent
cc94e5f52f
commit
731c8c9ad9
2 changed files with 15 additions and 0 deletions
6
scripts/push
Executable file
6
scripts/push
Executable file
|
@ -0,0 +1,6 @@
|
|||
#!/bin/bash
|
||||
|
||||
set -e
|
||||
|
||||
git push -u origin
|
||||
git push -u github
|
9
scripts/release
Executable file
9
scripts/release
Executable file
|
@ -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
|
Loading…
Reference in a new issue