Chart: Rename changelog/Changelog-*.md into changelog/helm-chart-*.md.

This commit is contained in:
Marco Ebert 2023-11-08 14:18:19 +01:00
parent 84ced1ed1c
commit b8e4e3ceba
12 changed files with 4 additions and 3 deletions

View file

@ -65,7 +65,7 @@ func (r ReleaseNote) HelmTemplate() {
Debug("ChangeLog Templates %s", string(changelogTemplate))
t := template.Must(template.New("changelog").Parse(string(changelogTemplate)))
// create a new file
file, err := os.Create(fmt.Sprintf("charts/ingress-nginx/changelog/Changelog-%s.md", r.NewHelmChartVersion))
file, err := os.Create(fmt.Sprintf("charts/ingress-nginx/changelog/helm-chart-%s.md", r.NewHelmChartVersion))
if err != nil {
ErrorF("Could not create changelog file %s", err)
}