mirror of
https://github.com/goreleaser/goreleaser.git
synced 2025-01-08 03:31:59 +02:00
14 lines
260 B
Go
14 lines
260 B
Go
// Package pipeline provides a generic pipe interface.
|
|
package pipeline
|
|
|
|
import "github.com/goreleaser/goreleaser/context"
|
|
|
|
// Pipe interface
|
|
type Pipe interface {
|
|
// Name of the pipe
|
|
Description() string
|
|
|
|
// Run the pipe
|
|
Run(ctx *context.Context) error
|
|
}
|