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 0209119 commit 0e11288Copy full SHA for 0e11288
.github/workflows/release.yml
@@ -61,8 +61,9 @@ jobs:
61
MESSAGE="Build for $(git rev-parse --short HEAD)"
62
git commit --allow-empty -m "$MESSAGE"
63
64
- # Create an annotated tag and push it to origin
65
- git tag -a -m "Release $TAG" $TAG
+ # Create an annotated tag and push it to origin. Using -f to overwrite
+ # the tag that `npm version` made for us in a previous step
66
+ git tag -f -a -m "Release $TAG" $TAG
67
git push origin $TAG
68
69
release:
0 commit comments