chore: remove wasted assignment in git.go

Amolith and Crush created

Co-Authored-By: Crush <crush@charm.land>

Change summary

git/git.go | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)

Detailed changes

git/git.go 🔗

@@ -83,7 +83,7 @@ func GetReleases(gitURI, forge string) ([]Release, error) {
 			date = tagObj.Tagger.When
 		}
 
-		tagURL := ""
+		var tagURL string
 		tagName := bmStrict.Sanitize(tagRef.Name().Short())
 
 		switch forge {