1
0
mirror of https://github.com/goreleaser/goreleaser.git synced 2025-02-03 13:11:48 +02:00

15 lines
532 B
Go
Raw Normal View History

// Package custompublishers provides a Pipe that executes a custom publisher
package custompublishers
import (
"github.com/goreleaser/goreleaser/internal/exec"
"github.com/goreleaser/goreleaser/pkg/context"
)
// Pipe for custom publisher.
type Pipe struct{}
func (Pipe) String() string { return "custom publisher" }
func (Pipe) Skip(ctx *context.Context) bool { return len(ctx.Config.Publishers) == 0 }
func (Pipe) Publish(ctx *context.Context) error { return exec.Execute(ctx, ctx.Config.Publishers) }