pipe

command module
v1.1.1-0...-cdd4a6e Latest Latest
Warning

This package is not in the latest version of its module.

Go to latest
Published: Feb 27, 2026 License: MIT Imports: 1 Imported by: 0

README

Pipe

Pipe

A minimal, dependency-free pipeline runner for the command line. Replaces fragile, chained shell aliases with clear and structured YAML workflows.

Documentation

Full documentation is available at docs.getpipe.dev.

Install

Homebrew
brew tap getpipe-dev/pipe
brew install pipe
GitHub Releases

Download the latest binary from the Releases page.

Quick Example

name: deploy
description: "Build and deploy the app"
vars:
  registry: "ghcr.io/myorg"
steps:
  - id: get-version
    run: "git describe --tags --always"

  - id: build
    run: "docker build -t $PIPE_VAR_REGISTRY/app:$PIPE_GET_VERSION ."

  - id: push
    run: "docker push $PIPE_VAR_REGISTRY/app:$PIPE_GET_VERSION"
    depends_on: "build"
    retry: 2
pipe deploy

PipeHub

Pipe Hub - Share and collaborate pipelines with a team

License

This project is licensed under the MIT License.

Documentation

The Go Gopher

There is no documentation for this package.

Directories

Path Synopsis
internal
cli
hub
ui

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL