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

fix: updated deps

closes #527
This commit is contained in:
Carlos Alexandro Becker
2018-01-26 09:36:55 -02:00
parent 6414c406fb
commit a309eae83b
4 changed files with 10 additions and 10 deletions

View File

@ -81,7 +81,7 @@ func (c *githubClient) CreateFile(
return
}
func (c *githubClient) CreateRelease(ctx *context.Context, body string) (releaseID int, err error) {
func (c *githubClient) CreateRelease(ctx *context.Context, body string) (releaseID int64, err error) {
var release *github.RepositoryRelease
title, err := releaseTitle(ctx)
if err != nil {
@ -122,7 +122,7 @@ func (c *githubClient) CreateRelease(ctx *context.Context, body string) (release
func (c *githubClient) Upload(
ctx *context.Context,
releaseID int,
releaseID int64,
name string,
file *os.File,
) (err error) {