-
Notifications
You must be signed in to change notification settings - Fork 16
Description
Currently, the when I merge to master/main branch, the tag for helm it generates is "0.2.0+70d13ed" while the git tag is just 0.2.0. Even when I specify helm release CHART -t 0.2.0
It still adds SHA at the end.
I know I can achieve that with using: helm release . --source helm --bump patch
But, I am trying to implement this in our CI/CD pipeline, which would use semantic-release plugin, and use the git tag that is generated from that commit. semantic-release plugin tag is generated automatically off the commit message, like "fix:" or "feat:". That way, I don't have to update the pipeline every time manually with major, minor, or patch (if I use --source helm).
I was wondering if there is a possibility to add an option/arg which would generate the Chart version without the SHA in git source, like it does when I use --source helm?