From 8ca500926863e1514e3ced7982816c954592f6d7 Mon Sep 17 00:00:00 2001 From: Carlos A Becker Date: Sat, 6 Nov 2021 16:49:23 -0300 Subject: [PATCH] fix: discord default url --- internal/pipe/discord/discord.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/internal/pipe/discord/discord.go b/internal/pipe/discord/discord.go index 1959535e7..a91dd1ef2 100644 --- a/internal/pipe/discord/discord.go +++ b/internal/pipe/discord/discord.go @@ -16,7 +16,7 @@ const ( defaultAuthor = `GoReleaser` defaultColor = "3888754" defaultIcon = "https://goreleaser.com/static/avatar.png" - defaultMessageTemplate = `{{ .ProjectName }} {{ .Tag }} is out! Check it out at {{ trimsuffix .GitURL ".git" }}/releases/tag/{{ .Tag }}` + defaultMessageTemplate = `{{ .ProjectName }} {{ .Tag }} is out! Check it out at {{ .ReleaseURL }}` ) type Pipe struct{}