releaser: Create bundles for the release notes

Fixes #4413
This commit is contained in:
Bjørn Erik Pedersen 2018-02-21 10:22:08 +01:00
parent 4560261b58
commit 8dc77b84a5
No known key found for this signature in database
GPG Key ID: 330E6E2BD4859D8F
1 changed files with 7 additions and 3 deletions

View File

@ -260,15 +260,19 @@ func (r *ReleaseHandler) writeReleaseNotesToTemp(version string, infosMain, info
}
func (r *ReleaseHandler) writeReleaseNotesToDocs(title, sourceFilename string) (string, error) {
targetFilename := filepath.Base(sourceFilename)
contentDir := hugoFilepath("docs/content/news")
targetFilename := "index.md"
bundleDir := strings.TrimSuffix(filepath.Base(sourceFilename), "-ready.md")
contentDir := hugoFilepath("docs/content/news/" + bundleDir)
targetFullFilename := filepath.Join(contentDir, targetFilename)
if r.try {
fmt.Printf("Write release notes to /docs: Bundle %q Dir: %q\n", bundleDir, contentDir)
return targetFullFilename, nil
}
os.Mkdir(contentDir, os.ModePerm)
if err := os.MkdirAll(contentDir, os.ModePerm); err != nil {
return "", nil
}
b, err := ioutil.ReadFile(sourceFilename)
if err != nil {