mirror of
https://github.com/goreleaser/goreleaser.git
synced 2025-01-22 04:08:49 +02:00
24 lines
483 B
Go
24 lines
483 B
Go
|
package middleware
|
||
|
|
||
|
import (
|
||
|
"github.com/apex/log"
|
||
|
"github.com/goreleaser/goreleaser/internal/pipe"
|
||
|
"github.com/goreleaser/goreleaser/pkg/context"
|
||
|
)
|
||
|
|
||
|
// ErrHandler handles an action error, ignoring and logging pipe skipped
|
||
|
// errors.
|
||
|
func ErrHandler(action Action) Action {
|
||
|
return func(ctx *context.Context) error {
|
||
|
var err = action(ctx)
|
||
|
if err == nil {
|
||
|
return nil
|
||
|
}
|
||
|
if pipe.IsSkip(err) {
|
||
|
log.WithError(err).Warn("pipe skipped")
|
||
|
return nil
|
||
|
}
|
||
|
return err
|
||
|
}
|
||
|
}
|