From 625747d0486b3808555e7f9916b44bf620ff368a Mon Sep 17 00:00:00 2001 From: cellarspoon Date: Sun, 2 Jan 2022 15:54:46 +0100 Subject: [PATCH] fix: get right url --- cli/recipe/release.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cli/recipe/release.go b/cli/recipe/release.go index b006edca..697284da 100644 --- a/cli/recipe/release.go +++ b/cli/recipe/release.go @@ -292,7 +292,7 @@ func pushRelease(recipe recipe.Recipe, tagString string) error { } if !internal.Dry { - url := fmt.Sprintf("%s/%s/tags/%s", config.REPOS_BASE_URL, recipe.Name, tagString) + url := fmt.Sprintf("%s/%s/src/tag/%s", config.REPOS_BASE_URL, recipe.Name, tagString) logrus.Infof("new release published: %s", url) } else { logrus.Info("dry run: no changes published")