1
0
mirror of https://github.com/goreleaser/goreleaser.git synced 2025-03-19 20:57:53 +02:00

publish the release

This commit is contained in:
Carlos Alexandro Becker 2016-12-29 10:02:26 -02:00
parent 670d50bba3
commit dab3f399f2
No known key found for this signature in database
GPG Key ID: E61E2F7DC14AB940

View File

@ -24,7 +24,6 @@ func Release(version, diff string, config config.ProjectConfig) error {
repo := strings.Split(config.Repo, "/")[1]
r, _, err := client.Repositories.CreateRelease(owner, repo, &github.RepositoryRelease{
Draft: github.Bool(true),
Name: github.String(version),
TagName: github.String(version),
Body: github.String(diff + "\n\nAutomated with @goreleaser"),