releaser: Improve release notes front matter

This commit is contained in:
Bjørn Erik Pedersen 2017-10-19 12:34:03 +02:00
parent 3164103310
commit c4bf03a558
No known key found for this signature in database
GPG Key ID: 330E6E2BD4859D8F
1 changed files with 12 additions and 2 deletions

View File

@ -281,15 +281,25 @@ func (r *ReleaseHandler) writeReleaseNotesToDocs(title, sourceFilename string) (
}
defer f.Close()
fmTail := ""
if strings.Count(title, ".") > 1 {
// Bug fix release
fmTail = `
images:
- images/blog/hugo-bug-poster.png
`
}
if _, err := f.WriteString(fmt.Sprintf(`
---
date: %s
title: %q
description: %q
categories: ["Releases"]
slug: %q
categories: ["Releases"]%s
---
`, time.Now().Format("2006-01-02"), title, title)); err != nil {
`, time.Now().Format("2006-01-02"), title, title, title, fmTail)); err != nil {
return "", err
}