소스 검색

Adding push and release scripts.

Dan 7 년 전
부모
커밋
731c8c9ad9
2개의 변경된 파일15개의 추가작업 그리고 0개의 파일을 삭제
  1. 6 0
      scripts/push
  2. 9 0
      scripts/release

+ 6 - 0
scripts/push

@@ -0,0 +1,6 @@
+#!/bin/bash
+
+set -e
+
+git push -u origin
+git push -u github

+ 9 - 0
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