mirror of
https://github.com/goreleaser/goreleaser.git
synced 2025-01-24 04:16:27 +02:00
6c21b01586
This PR adds [OpenCollective](https://opencollective.com) as an announcement pipeline. ![Screenshot from 2023-02-03 00-11-18](https://user-images.githubusercontent.com/42128690/216525902-31e1f358-3c3d-4c1c-9d71-402170a8a0e6.png) --------- Signed-off-by: jolheiser <john.olheiser@gmail.com> Co-authored-by: Carlos Alexandro Becker <caarlos0@users.noreply.github.com>
75 lines
2.1 KiB
Go
75 lines
2.1 KiB
Go
// Package announce contains the announcing pipe.
|
|
package announce
|
|
|
|
import (
|
|
"fmt"
|
|
|
|
"github.com/goreleaser/goreleaser/internal/middleware/errhandler"
|
|
"github.com/goreleaser/goreleaser/internal/middleware/logging"
|
|
"github.com/goreleaser/goreleaser/internal/middleware/skip"
|
|
"github.com/goreleaser/goreleaser/internal/pipe/discord"
|
|
"github.com/goreleaser/goreleaser/internal/pipe/linkedin"
|
|
"github.com/goreleaser/goreleaser/internal/pipe/mastodon"
|
|
"github.com/goreleaser/goreleaser/internal/pipe/mattermost"
|
|
"github.com/goreleaser/goreleaser/internal/pipe/opencollective"
|
|
"github.com/goreleaser/goreleaser/internal/pipe/reddit"
|
|
"github.com/goreleaser/goreleaser/internal/pipe/slack"
|
|
"github.com/goreleaser/goreleaser/internal/pipe/smtp"
|
|
"github.com/goreleaser/goreleaser/internal/pipe/teams"
|
|
"github.com/goreleaser/goreleaser/internal/pipe/telegram"
|
|
"github.com/goreleaser/goreleaser/internal/pipe/twitter"
|
|
"github.com/goreleaser/goreleaser/internal/pipe/webhook"
|
|
"github.com/goreleaser/goreleaser/internal/tmpl"
|
|
"github.com/goreleaser/goreleaser/pkg/context"
|
|
)
|
|
|
|
// Announcer should be implemented by pipes that want to announce releases.
|
|
type Announcer interface {
|
|
fmt.Stringer
|
|
Announce(ctx *context.Context) error
|
|
}
|
|
|
|
// nolint: gochecknoglobals
|
|
var announcers = []Announcer{
|
|
// XXX: keep asc sorting
|
|
discord.Pipe{},
|
|
linkedin.Pipe{},
|
|
mastodon.Pipe{},
|
|
mattermost.Pipe{},
|
|
opencollective.Pipe{},
|
|
reddit.Pipe{},
|
|
slack.Pipe{},
|
|
smtp.Pipe{},
|
|
teams.Pipe{},
|
|
telegram.Pipe{},
|
|
twitter.Pipe{},
|
|
webhook.Pipe{},
|
|
}
|
|
|
|
// Pipe that announces releases.
|
|
type Pipe struct{}
|
|
|
|
func (Pipe) String() string { return "announcing" }
|
|
|
|
func (Pipe) Skip(ctx *context.Context) (bool, error) {
|
|
if ctx.SkipAnnounce {
|
|
return true, nil
|
|
}
|
|
return tmpl.New(ctx).Bool(ctx.Config.Announce.Skip)
|
|
}
|
|
|
|
// Run the pipe.
|
|
func (Pipe) Run(ctx *context.Context) error {
|
|
memo := errhandler.Memo{}
|
|
for _, announcer := range announcers {
|
|
_ = skip.Maybe(
|
|
announcer,
|
|
logging.PadLog(announcer.String(), memo.Wrap(announcer.Announce)),
|
|
)(ctx)
|
|
}
|
|
if memo.Error() != nil {
|
|
return fmt.Errorf("failed to announce release: %w", memo.Error())
|
|
}
|
|
return nil
|
|
}
|