You've already forked goreleaser
mirror of
https://github.com/goreleaser/goreleaser.git
synced 2025-12-03 23:21:13 +02:00
11 lines
288 B
Go
11 lines
288 B
Go
|
|
package pipeline
|
||
|
|
|
||
|
|
import "github.com/goreleaser/goreleaser/context"
|
||
|
|
|
||
|
|
// Cleaner is an interface that a pipe can implement
|
||
|
|
// to cleanup after all pipes ran.
|
||
|
|
type Cleaner interface {
|
||
|
|
// Clean is called after pipeline is done - even if a pipe returned an error.
|
||
|
|
Clean(*context.Context)
|
||
|
|
}
|