From f8143feff2719af208ba02a5d6230f58f6c4eeb5 Mon Sep 17 00:00:00 2001 From: Cameron Braid Date: Mon, 18 Jan 2021 01:28:37 +1100 Subject: [PATCH] Add html_url field to Release struct --- gitea/release.go | 1 + 1 file changed, 1 insertion(+) diff --git a/gitea/release.go b/gitea/release.go index 502e5da..cd6f4f5 100644 --- a/gitea/release.go +++ b/gitea/release.go @@ -21,6 +21,7 @@ type Release struct { Title string `json:"name"` Note string `json:"body"` URL string `json:"url"` + HTMLURL string `json:"html_url"` TarURL string `json:"tarball_url"` ZipURL string `json:"zipball_url"` IsDraft bool `json:"draft"` -- 2.40.1