From 53b42e17d726f111a0d30df45b5a7dd68cf26ab4 Mon Sep 17 00:00:00 2001 From: Carlos A Becker Date: Sat, 12 Nov 2022 17:23:34 -0300 Subject: [PATCH] chore: fmt --- internal/client/github.go | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/internal/client/github.go b/internal/client/github.go index 5f1d22caab75..2db254fdb021 100644 --- a/internal/client/github.go +++ b/internal/client/github.go @@ -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) {