2014-02-07 10:10:01 +00:00
|
|
|
package publish
|
|
|
|
|
|
|
|
import (
|
|
|
|
"github.com/drone/drone/pkg/build/buildfile"
|
|
|
|
)
|
|
|
|
|
|
|
|
// Publish stores the configuration details
|
|
|
|
// for publishing build artifacts when
|
|
|
|
// a Build has succeeded
|
|
|
|
type Publish struct {
|
|
|
|
S3 *S3 `yaml:"s3,omitempty"`
|
2014-03-26 13:07:16 +00:00
|
|
|
Swift *Swift `yaml:"swift,omitempty"`
|
2014-03-28 05:43:58 +00:00
|
|
|
PyPI *PyPI `yaml:"pypi, omitempty"`
|
2014-02-07 10:10:01 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
func (p *Publish) Write(f *buildfile.Buildfile) {
|
|
|
|
if p.S3 != nil {
|
|
|
|
p.S3.Write(f)
|
|
|
|
}
|
2014-03-26 13:07:16 +00:00
|
|
|
if p.Swift != nil {
|
|
|
|
p.Swift.Write(f)
|
|
|
|
}
|
2014-03-28 05:43:58 +00:00
|
|
|
if p.PyPI != nil {
|
|
|
|
p.PyPI.Write(f)
|
|
|
|
}
|
2014-02-07 10:10:01 +00:00
|
|
|
}
|