mirror of
https://github.com/goreleaser/goreleaser.git
synced 2025-01-10 03:47:03 +02:00
13 lines
196 B
Go
13 lines
196 B
Go
package pipeline
|
|
|
|
import "github.com/goreleaser/releaser/context"
|
|
|
|
// Pipe interface
|
|
type Pipe interface {
|
|
// Name of the pipe
|
|
Name() string
|
|
|
|
// Run the pipe
|
|
Run(ctx *context.Context) error
|
|
}
|