Skip to content

pipe <pipeline>

Synopsis

pipe <pipeline> [KEY=value ...] [flags]

Description

Runs the named pipeline. Pipe resolves the name through aliases, Hub, then local files. Variable overrides are passed as positional arguments in KEY=value format.

When run without arguments, Pipe prints help. When run with <pipeline> help, it shows pipeline-specific usage including variables and steps.

Arguments

ArgumentDescription
<pipeline>Pipeline name, alias, or owner/name path
KEY=valueVariable overrides (repeatable)

Flags

FlagDescription
--resume <run-id>Resume a previous run by ID
-v, --verboseIncrease verbosity (-v verbose, -vv debug)

Examples

Terminal window
# Run a local pipeline
pipe deploy
# Run with variable overrides
pipe deploy env=production tag=v1.2.0
# Run a Hub pipeline
pipe myorg/deploy
# Run a specific Hub tag
pipe myorg/deploy:v1.0.0
# Resume a failed run
pipe deploy --resume abc123
# Verbose output
pipe deploy -v

See also