Dont use CI to distribute, do it manually
This commit is contained in:
parent
b48707ada0
commit
ede234a113
3 changed files with 1 additions and 8 deletions
|
@ -14,9 +14,3 @@ dependencies:
|
||||||
test:
|
test:
|
||||||
override:
|
override:
|
||||||
- ./scripts/runtests
|
- ./scripts/runtests
|
||||||
|
|
||||||
deployment:
|
|
||||||
production:
|
|
||||||
branch: master
|
|
||||||
commands:
|
|
||||||
- ./scripts/distribute
|
|
||||||
|
|
|
@ -2,8 +2,6 @@
|
||||||
|
|
||||||
set -eu
|
set -eu
|
||||||
|
|
||||||
[ -z "$CIRCLE_USERNAME" ] && { echo "Must be run on CircleCI."; exit 1;}
|
|
||||||
|
|
||||||
echo ">> Building Packages..."
|
echo ">> Building Packages..."
|
||||||
python setup.py build sdist
|
python setup.py build sdist
|
||||||
|
|
||||||
|
|
|
@ -9,4 +9,5 @@ flake8 django_client_reverse --ignore=E128,E501,E401
|
||||||
coverage html
|
coverage html
|
||||||
coverage report
|
coverage report
|
||||||
|
|
||||||
|
python setup.py build sdist
|
||||||
python setup.py check
|
python setup.py check
|
||||||
|
|
Reference in a new issue