drone-yaml/yaml/push.go

32 lines
606 B
Go
Raw Normal View History

// Copyright (c) 2019, Drone IO Inc.
// Copyright (c) 2021, Robert Kaussow <mail@thegeeklab.de>
2019-02-10 20:00:16 +01:00
2019-01-23 00:44:17 +01:00
package yaml
type (
// Push configures a Docker push.
Push struct {
Image string `json:"image,omitempty"`
}
// push is a tempoary type used to unmarshal
// the Push struct when long format is used.
push struct {
Image string `json:"image,omitempty"`
}
)
// UnmarshalYAML implements yaml unmarshalling.
func (p *Push) UnmarshalYAML(unmarshal func(interface{}) error) error {
d := new(push)
2019-01-23 00:44:17 +01:00
err := unmarshal(&d.Image)
if err != nil {
err = unmarshal(d)
}
2019-01-23 00:44:17 +01:00
p.Image = d.Image
2019-01-23 00:44:17 +01:00
return err
}