in cmd/release/utils/values/local.go [26:33]
func GetGitTag(projectOrg, projectName, releaseBranch string) ([]byte, error) {
gitTagPath := getGitTagPath(projectOrg, projectName, releaseBranch)
fileOutput, err := os.ReadFile(gitTagPath.String())
if err != nil {
return []byte{}, fmt.Errorf("reading git tag at %s path:%w", gitTagPath, err)
}
return bytes.TrimSpace(fileOutput), nil
}