fix: get right url
continuous-integration/drone/push Build is passing Details

This commit is contained in:
decentral1se 2022-01-02 15:54:46 +01:00
parent a71b070921
commit 625747d048
Signed by: decentral1se
GPG Key ID: 03789458B3D0C410
1 changed files with 1 additions and 1 deletions

View File

@ -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")