Skip to content

Commit

Permalink
chore: fmt
Browse files Browse the repository at this point in the history
  • Loading branch information
caarlos0 committed Nov 12, 2022
1 parent 444c039 commit 19cf98c
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions internal/client/github.go
Expand Up @@ -250,8 +250,7 @@ func (c *githubClient) CreateRelease(ctx *context.Context, body string) (string,
}
}

githubReleaseID := strconv.FormatInt(release.GetID(), 10)
return githubReleaseID, nil
return strconv.FormatInt(release.GetID(), 10), nil
}

func (c *githubClient) createOrUpdateRelease(ctx *context.Context, data *github.RepositoryRelease, body string) (*github.RepositoryRelease, error) {
Expand Down

0 comments on commit 19cf98c

Please sign in to comment.