diff --git a/git/tag/action.yaml b/git/tag/action.yaml index 8cdbffb..f273042 100644 --- a/git/tag/action.yaml +++ b/git/tag/action.yaml @@ -6,7 +6,7 @@ runs: container: alpine/git steps: - run: | - $TAG=$(git describe) + $TAG=$(git describe --tags) echo "$TAG" git tag -f "$TAG" "$GITHUB_SHA" git push -f origin "$TAG"