woodpecker/plugin/deploy/nodejitsu.go

23 lines
584 B
Go
Raw Normal View History

2014-02-07 10:10:01 +00:00
package deploy
import (
2014-06-04 21:25:38 +00:00
"github.com/drone/drone/shared/build/buildfile"
2014-02-07 10:10:01 +00:00
)
type Nodejitsu struct {
App string `yaml:"app,omitempty"`
User string `yaml:"user,omitempty"`
Token string `yaml:"token,omitempty"`
2014-02-07 10:10:01 +00:00
}
func (n *Nodejitsu) Write(f *buildfile.Buildfile) {
2014-03-20 07:33:45 +00:00
f.WriteEnv("username", n.User)
f.WriteEnv("apiToken", n.Token)
2014-02-07 10:10:01 +00:00
// Install the jitsu command line interface then
// deploy the configured app.
f.WriteCmdSilent("[ -f /usr/bin/sudo ] || npm install -g jitsu")
f.WriteCmdSilent("[ -f /usr/bin/sudo ] && sudo npm install -g jitsu")
f.WriteCmd("jitsu deploy")
2014-02-07 10:10:01 +00:00
}