From 13b26cbf1404d18a0dc3750ac74216e865f7f3a9 Mon Sep 17 00:00:00 2001 From: Juan Antonio Osorio Date: Mon, 19 Sep 2022 11:26:16 +0300 Subject: [PATCH] Print actual tag to be used when using `with_v` The logs from the tag run don't show the actual tag to be used if the `with_v` option is set. This fixes that. Signed-off-by: Juan Antonio Osorio --- entrypoint.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/entrypoint.sh b/entrypoint.sh index 4b034241..cbe6d18b 100755 --- a/entrypoint.sh +++ b/entrypoint.sh @@ -158,11 +158,11 @@ then fi part="pre-$part" else - echo -e "Bumping tag $tag. New tag ${new}" if $with_v then new="v$new" fi + echo -e "Bumping tag ${tag}. New tag ${new}" fi # as defined in readme if CUSTOM_TAG is used any semver calculations are irrelevant.