mirror of
https://github.com/woodpecker-ci/woodpecker.git
synced 2024-11-24 08:02:18 +02:00
18 lines
389 B
Go
18 lines
389 B
Go
package update
|
|
|
|
type VersionData struct {
|
|
Latest string `json:"latest"`
|
|
Next string `json:"next"`
|
|
RC string `json:"rc"`
|
|
}
|
|
|
|
type NewVersion struct {
|
|
Version string
|
|
AssetURL string
|
|
}
|
|
|
|
const (
|
|
woodpeckerVersionURL = "https://woodpecker-ci.org/version.json"
|
|
githubBinaryURL = "https://github.com/woodpecker-ci/woodpecker/releases/download/v%s/woodpecker-cli_%s_%s.tar.gz"
|
|
)
|