diff --git a/changes/flow.py b/changes/flow.py index e26b8ec..c46ed37 100644 --- a/changes/flow.py +++ b/changes/flow.py @@ -14,14 +14,15 @@ def perform_release(context): """Executes the release process.""" try: - print(context) if not context.skip_changelog: generate_changelog(context) increment_version(context) - commit_version_change(context) + install_package(context) upload_package(context) install_from_pypi(context) + + commit_version_change(context) tag_and_push(context) except: log.exception('Error releasing')