We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8ff4ff5 commit 596e4c8Copy full SHA for 596e4c8
1 file changed
.github/workflows/publish.yml
@@ -59,9 +59,13 @@ jobs:
59
git tag -d "${TAG_NAME}"
60
git push origin ":refs/tags/${TAG_NAME}" || true
61
62
+ # Configure git identity for creating annotated tags
63
+ git config user.name "github-actions[bot]"
64
+ git config user.email "github-actions[bot]@users.noreply.github.com"
65
+
66
# Create new tag at HEAD
67
git tag -a "${TAG_NAME}" -m "${TAG_NAME}"
- git push origin "${TAG_NAME}"
68
+ git push --force origin "${TAG_NAME}"
69
70
echo "Tag ${TAG_NAME} successfully moved to merge commit ${HEAD_COMMIT}"
71
else
0 commit comments