Created
June 15, 2023 10:26
-
-
Save paambaati/54a0ef43f7497da1c9af316d64acced0 to your computer and use it in GitHub Desktop.
Debug git for semantic-release
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#DEBUG | |
git notes --ref semantic-release list | |
# REFER: https://github.com/semantic-release/semantic-release/blob/master/docs/support/troubleshooting.md#release-not-found-release-branch-after-git-push---force | |
git tag --delete v4.0.0 | |
git push --delete origin v4.0.0 | |
git tag v4.0.0 cdbb31e9cece505753becbfccc7ab64665a4cca5 # Commit that created the release | |
git notes --ref semantic-release add -f -m '{"channels":[null]}' v4.0.0 | |
git push --force origin refs/notes/semantic-release | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment