You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
12 lines
383 B
12 lines
383 B
package main
|
|
|
|
import "github.com/drone/drone-go/drone"
|
|
|
|
// Params are the parameters that the GitHub Release plugin can parse.
|
|
type Params struct {
|
|
BaseURL string `json:"base_url"`
|
|
UploadURL string `json:"upload_url"`
|
|
APIKey string `json:"api_key"`
|
|
Files []string `json:"files"`
|
|
Checksum drone.StringSlice `json:"checksum"`
|
|
}
|
|
|