| package github_releases | |
| import ( | |
| "github.com/OpenListTeam/OpenList/v4/internal/driver" | |
| "github.com/OpenListTeam/OpenList/v4/internal/op" | |
| ) | |
| type Addition struct { | |
| driver.RootPath | |
| RepoStructure string `json:"repo_structure" type:"text" required:"true" default:"OpenListTeam/OpenList" help:"structure:[path:]org/repo"` | |
| ShowReadme bool `json:"show_readme" type:"bool" default:"true" help:"show README、LICENSE file"` | |
| Token string `json:"token" type:"string" required:"false" help:"GitHub token, if you want to access private repositories or increase the rate limit"` | |
| ShowSourceCode bool `json:"show_source_code" type:"bool" default:"false" help:"show Source code (zip/tar.gz)"` | |
| ShowAllVersion bool `json:"show_all_version" type:"bool" default:"false" help:"show all versions"` | |
| GitHubProxy string `json:"gh_proxy" type:"string" default:"" help:"GitHub proxy, e.g. https://ghproxy.net/github.com or https://gh-proxy.com/github.com "` | |
| } | |
| var config = driver.Config{ | |
| Name: "GitHub Releases", | |
| NoUpload: true, | |
| } | |
| func init() { | |
| op.RegisterDriver(func() driver.Driver { | |
| return &GithubReleases{} | |
| }) | |
| } | |