From 0f98ab44f55b47e1e415f4086af2d808379c51d0 Mon Sep 17 00:00:00 2001 From: peaceiris <30958501+peaceiris@users.noreply.github.com> Date: Mon, 13 Jan 2020 00:53:19 +0900 Subject: [PATCH] feat: Add print_info for tag options --- entrypoint.sh | 2 ++ 1 file changed, 2 insertions(+) diff --git a/entrypoint.sh b/entrypoint.sh index 789a3d4..2e33dde 100755 --- a/entrypoint.sh +++ b/entrypoint.sh @@ -143,7 +143,9 @@ else fi if [[ -n "${INPUT_TAGNAME}" ]]; then + print_info "Tag name: ${INPUT_TAGNAME}" if [[ -n "${INPUT_TAGMESSAGE}" ]]; then + print_info "Tag message: ${INPUT_TAGMESSAGE}" git tag "${INPUT_TAGNAME}" -m "${INPUT_TAGMESSAGE}" else git tag "${INPUT_TAGNAME}"