File tree 3 files changed +11
-3
lines changed
3 files changed +11
-3
lines changed Original file line number Diff line number Diff line change 6
6
from .text_utils import debug
7
7
from .text_utils import get_text
8
8
from .text_utils import get_context
9
- from .text_utils import handle_context_arg
10
- from .text_utils import handle_tag_message_args
11
9
# conventions imports
12
10
from commit_helper .conventions .karma_angular import angular_convention
13
11
from commit_helper .conventions .changelog import changelog_convention
Original file line number Diff line number Diff line change 6
6
from commit_helper .conventions .karma_angular import angular_convention
7
7
from commit_helper .conventions .changelog import changelog_convention
8
8
from commit_helper .conventions .symphony_cmf import symphony_convention
9
- from commit_helper .conventions .no_convention import just_message
10
9
11
10
12
11
supported_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