aboutsummaryrefslogtreecommitdiff
path: root/releng/cli.py
diff options
context:
space:
mode:
authorjade <lix@jade.fyi>2024-08-08 23:12:11 +0000
committerGerrit Code Review <gerrit@localhost>2024-08-08 23:12:11 +0000
commit3b902683e93ad21be3537ef77f3e5200fbbed900 (patch)
treecd2c01633d9530758da972e9ff97d22ddcc8b111 /releng/cli.py
parent9682ab4f3859ca60b0b4525452b27297e31cb751 (diff)
parent7246c2d104f12877de7d5b20033346eff88048e6 (diff)
Merge changes I0373ac01,I7b543967,I537103eb into main
* changes: releng: fix the git push releng: clarify/update docs, add instructions after tag Fix is_maintenance_branch heuristic
Diffstat (limited to 'releng/cli.py')
-rw-r--r--releng/cli.py10
1 files changed, 8 insertions, 2 deletions
diff --git a/releng/cli.py b/releng/cli.py
index f78d4b12d..f2d193444 100644
--- a/releng/cli.py
+++ b/releng/cli.py
@@ -1,10 +1,13 @@
+import logging
+import argparse
+import sys
+
from . import create_release
from . import docker
from .environment import RelengEnvironment
from . import environment
-import argparse
-import sys
+log = logging.getLogger(__name__)
def do_build(args):
if args.target == 'all':
@@ -21,6 +24,9 @@ def do_tag(args):
create_release.do_tag_merge(force_tag=args.force_tag,
no_check_git=args.no_check_git)
+ log.info('Merged the release commit into your last branch, and switched to a detached HEAD of the artifact to be released.')
+ log.info('After you are done with releasing, switch to your previous branch and push that branch for review.')
+
def do_upload(env: RelengEnvironment, args):
create_release.setup_creds(env)