1
0
mirror of https://github.com/goreleaser/goreleaser.git synced 2025-12-07 23:35:23 +02:00
This commit is contained in:
Carlos Alexandro Becker
2017-01-14 12:34:22 -02:00
parent ae6c0d3063
commit ddec194c7e
18 changed files with 260 additions and 194 deletions

View File

@@ -1,6 +1,6 @@
package pipeline
import "github.com/goreleaser/releaser/config"
"github.com/goreleaser/releaser/config"
// Pipe interface
type Pipe interface {
@@ -8,5 +8,5 @@ type Pipe interface {
Name() string
// Run the pipe
Run(config config.ProjectConfig) error
Run(config context.Context) error
}