Spaces:
Paused
Paused
| 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" | |
| ) | |