mirror of
https://github.com/woodpecker-ci/woodpecker.git
synced 2025-03-23 20:32:53 +02:00
17 lines
379 B
Go
17 lines
379 B
Go
package update
|
|
|
|
type GithubRelease struct {
|
|
TagName string `json:"tag_name"`
|
|
Assets []struct {
|
|
Name string `json:"name"`
|
|
BrowserDownloadURL string `json:"browser_download_url"`
|
|
} `json:"assets"`
|
|
}
|
|
|
|
type NewVersion struct {
|
|
Version string
|
|
AssetURL string
|
|
}
|
|
|
|
const githubReleaseURL = "https://api.github.com/repos/woodpecker-ci/woodpecker/releases/latest"
|