Update git/tag/action.yaml

This commit is contained in:
Zakary Timson 2023-08-07 01:02:01 +00:00
parent 607c57e400
commit 0a342dbf1d

View File

@ -6,5 +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"