1
0
mirror of https://github.com/drone/drone-cli.git synced 2025-02-22 09:31:18 +01:00
drone-cli/drone/build/build.go

24 lines
405 B
Go

package build
import "github.com/urfave/cli"
// Command exports the build command set.
var Command = cli.Command{
Name: "build",
Usage: "manage builds",
Subcommands: []cli.Command{
buildListCmd,
buildLastCmd,
buildInfoCmd,
buildCreateCmd,
buildStopCmd,
buildStartCmd,
buildApproveCmd,
buildDeclineCmd,
buildPromoteCmd,
buildRollbackCmd,
buildQueueCmd,
buildQueueV2Cmd,
},
}