mirror of
https://github.com/grafana/grafana.git
synced 2025-08-01 23:33:29 +08:00
19 lines
496 B
Go
19 lines
496 B
Go
package cmd
|
|
|
|
import (
|
|
"github.com/grafana/grafana/pkg/build/daggerbuild/pipelines"
|
|
"github.com/urfave/cli/v2"
|
|
)
|
|
|
|
var PackagePublishCommand = &cli.Command{
|
|
Name: "publish",
|
|
Action: PipelineActionWithPackageInput(pipelines.PublishPackage),
|
|
Description: "Publishes a grafana.tar.gz (ideally one built using the 'package' command) in the destination directory (--destination)",
|
|
Flags: JoinFlagsWithDefault(
|
|
PackageInputFlags,
|
|
PublishFlags,
|
|
GCPFlags,
|
|
ConcurrencyFlags,
|
|
),
|
|
}
|