mirror of
https://github.com/woodpecker-ci/woodpecker.git
synced 2025-10-22 17:03:49 +00:00
implemented tsuru deploy plugin.
This commit is contained in:
@@ -18,6 +18,7 @@ type Deploy struct {
|
||||
Nodejitsu *Nodejitsu `yaml:"nodejitsu,omitempty"`
|
||||
Openshift *Openshift `yaml:"openshift,omitempty"`
|
||||
SSH *SSH `yaml:"ssh,omitempty"`
|
||||
Tsuru *Tsuru `yaml:"tsuru,omitempty"`
|
||||
}
|
||||
|
||||
func (d *Deploy) Write(f *buildfile.Buildfile) {
|
||||
@@ -51,4 +52,7 @@ func (d *Deploy) Write(f *buildfile.Buildfile) {
|
||||
if d.SSH != nil {
|
||||
d.SSH.Write(f)
|
||||
}
|
||||
if d.Tsuru != nil {
|
||||
d.Tsuru.Write(f)
|
||||
}
|
||||
}
|
||||
|
Reference in New Issue
Block a user