Hi everyone,
I’m facing an issue in the Devlops 100 Days - Day 34 Git hooks.
I’ve tried this multiple times and get the same result (“release tag was not created from the master branch error”) even though the steps are followed correctly, and i tried many tutorials from youtube, but it work for them 2 months ago, i got error although i copied exactly like them
Hi @HeinThet,
You can check the solution here and try again 100-Days-Of-DevOps-Challenge-KodeKloud/days/034.md at main · imShakil/100-Days-Of-DevOps-Challenge-KodeKloud · GitHub
This is a known validation issue. I suppose the fix is yet to be pushed to production environment(actual env what users see).
In the meanwhile if you want to clear the test, you could create a lightweight tag instead of an annotated tag(which you are creating currently).
To create a lightweight tag, you could do:
TAG=release-$(date +%F)
git tag "$TAG"

