Skip to content

Commit 176f66b

Browse files
committed
Print final release name in yellow
1 parent bb82a84 commit 176f66b

1 file changed

Lines changed: 3 additions & 1 deletion

File tree

scripts/create-release-tag.sh

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,8 @@ set -euo pipefail
44

55
ROOT_DIR="$(cd "$(dirname "${BASH_SOURCE[0]}")/.." && pwd)"
66
TAG_PREFIX="userauth"
7+
YELLOW=$'\033[33m'
8+
RESET=$'\033[0m'
79

810
if ! command -v git >/dev/null 2>&1; then
911
echo "Error: git is required but was not found in PATH" >&2
@@ -37,7 +39,7 @@ fi
3739
echo "Release tag preview:"
3840
echo " Tag scheme: ${TAG_PREFIX}-<shortsha>-<release_number>"
3941
echo " Release number: $NEXT_RELEASE_NUM"
40-
echo " Tag: $TAG_NAME"
42+
echo " Tag: ${YELLOW}${TAG_NAME}${RESET}"
4143
echo " Branch: $CURRENT_BRANCH"
4244
echo " Commit: $COMMIT_SHA"
4345
echo

0 commit comments

Comments
 (0)