docs: document release confirmation step
This commit is contained in:
@@ -114,6 +114,17 @@ if [ "${is_dry_run}" = true ]; then
|
||||
exit 0
|
||||
fi
|
||||
|
||||
echo "Release tag selected: ${release_tag}"
|
||||
read -r -p "Proceed with release? [y/N] " confirm
|
||||
case "${confirm}" in
|
||||
y|Y)
|
||||
;;
|
||||
*)
|
||||
echo "Release cancelled."
|
||||
exit 1
|
||||
;;
|
||||
esac
|
||||
|
||||
git checkout "${TAGBRANCH}"
|
||||
CURRENTBRANCH="${TAGBRANCH}"
|
||||
git merge "${ORIGBRANCH}"
|
||||
|
||||
Reference in New Issue
Block a user