From 73ee97191d59ee1b969f2f9e883b60e34273a63f Mon Sep 17 00:00:00 2001 From: Zakary Timson Date: Mon, 7 Aug 2023 01:06:08 +0000 Subject: [PATCH] Update git/tag/action.yaml --- git/tag/action.yaml | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/git/tag/action.yaml b/git/tag/action.yaml index cae250e..6c9367d 100644 --- a/git/tag/action.yaml +++ b/git/tag/action.yaml @@ -6,7 +6,6 @@ runs: container: alpine/git steps: - run: | - TAG=$(git describe --tags) - echo "$TAG" + TAG=$(git describe --abbrev=0 --tags) git tag -f "$TAG" "$GITHUB_SHA" git push -f origin "$TAG"