1
0
mirror of https://github.com/goreleaser/goreleaser.git synced 2025-07-03 00:57:43 +02:00
This commit is contained in:
Carlos Alexandro Becker
2017-06-22 00:09:14 -03:00
parent c80fc0714d
commit 1e9e82d926
15 changed files with 54 additions and 60 deletions

View File

@ -2,9 +2,9 @@ package client
import (
"bytes"
"log"
"os"
"github.com/apex/log"
"github.com/google/go-github/github"
"github.com/goreleaser/goreleaser/context"
"golang.org/x/oauth2"
@ -98,7 +98,7 @@ func (c *githubClient) CreateRelease(ctx *context.Context, body string) (release
data,
)
}
log.Printf("Release updated: %v\n", release.GetHTMLURL())
log.Infof("Release updated: %v\n", release.GetHTMLURL())
return release.GetID(), err
}