File tree Expand file tree Collapse file tree 3 files changed +11
-3
lines changed Expand file tree Collapse file tree 3 files changed +11
-3
lines changed Original file line number Diff line number Diff line change 66from .text_utils import debug
77from .text_utils import get_text
88from .text_utils import get_context
9- from .text_utils import handle_context_arg
10- from .text_utils import handle_tag_message_args
119# conventions imports
1210from commit_helper .conventions .karma_angular import angular_convention
1311from commit_helper .conventions .changelog import changelog_convention
Original file line number Diff line number Diff line change 66from commit_helper .conventions .karma_angular import angular_convention
77from commit_helper .conventions .changelog import changelog_convention
88from commit_helper .conventions .symphony_cmf import symphony_convention
9- from commit_helper .conventions .no_convention import just_message
109
1110
1211supported_conventions = [
Original file line number Diff line number Diff line change 1+ #! /bin/bash
2+
3+ python3 setup.py sdist bdist_wheel
4+
5+ if " $1 " == " test" ; then
6+ twine upload --repository-url https://test.pypi.org/legacy/ dist/*
7+ fi
8+
9+ if " $1 " == " deploy" ; then
10+ twine upload dist/*
11+ fi
You can’t perform that action at this time.
0 commit comments