1
0
mirror of https://github.com/goreleaser/goreleaser.git synced 2025-12-03 23:21:13 +02:00
Files
goreleaser/pipeline/cleaner.go

11 lines
288 B
Go
Raw Normal View History

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)
}