Packer plugin for Drone CI
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 

44 lines
629 B

package main
import (
"log"
"os"
"github.com/urfave/cli"
)
// Version set at compile-time
var (
Version string
BuildNum string
)
func main() {
app := cli.NewApp()
app.Name = "packer plugin"
app.Usage = "packer plugin"
app.Action = run
app.Flags = []cli.Flag{
cli.StringFlag{
Name: "token",
Usage: "telegram token",
EnvVar: "PLUGIN_TOKEN,TELEGRAM_TOKEN",
},
}
app.Version = Version
if BuildNum != "" {
app.Version = app.Version + "+" + BuildNum
}
if err := app.Run(os.Args); err != nil {
log.Fatal(err)
}
}
func run(c *cli.Context) error {
plugin := Plugin{}
return plugin.Exec()
}