1
0
mirror of https://github.com/goreleaser/goreleaser.git synced 2025-07-05 00:59:04 +02:00

fix: lint issues

This commit is contained in:
Carlos Alexandro Becker
2018-05-13 16:06:14 -03:00
committed by Carlos Alexandro Becker
parent 0b25773b77
commit 8690ee07e5
5 changed files with 21 additions and 17 deletions

View File

@ -90,7 +90,7 @@ func (c *githubClient) CreateFile(
func (c *githubClient) CreateRelease(ctx *context.Context, body string) (int64, error) {
var release *github.RepositoryRelease
title, err := nametemplate.Apply(ctx, "github", ctx.Config.Release.NameTemplate)
title, err := nametemplate.Apply(ctx, ctx.Config.Release.NameTemplate)
if err != nil {
return 0, err
}