mirror of
https://github.com/drone/drone-cli.git
synced 2024-11-23 17:22:09 +01:00
16 lines
257 B
Go
16 lines
257 B
Go
package common
|
|
|
|
// A config structure is used to configure a build.
|
|
type Config struct {
|
|
Init Step
|
|
Clone Step
|
|
Build Step
|
|
|
|
Compose map[string]Step
|
|
Publish map[string]Step
|
|
Deploy map[string]Step
|
|
Notify map[string]Step
|
|
|
|
Matrix map[string][]string
|
|
}
|