From 92241159dfa5325b07698c74331061b44aef5f1c Mon Sep 17 00:00:00 2001 From: Bruno Farina Date: Tue, 27 Sep 2022 18:15:53 -0300 Subject: [PATCH] Added new tag value Added a new tag value when there are no new commits, then it has to take the previous existing tag value. --- entrypoint.sh | 1 + 1 file changed, 1 insertion(+) diff --git a/entrypoint.sh b/entrypoint.sh index 3c87c63d..f2e33a72 100755 --- a/entrypoint.sh +++ b/entrypoint.sh @@ -96,6 +96,7 @@ commit=$(git rev-parse HEAD) if [ "$tag_commit" == "$commit" ] then echo "No new commits since previous tag. Skipping..." + echo "::set-output name=new_tag::$tag" echo "::set-output name=tag::$tag" exit 0 fi