mirror of
https://github.com/goreleaser/goreleaser.git
synced 2025-01-06 03:13:48 +02:00
f82a32cd3a
Allows to template-disable specific blob configurations. Closes #3883
58 lines
1.4 KiB
Go
58 lines
1.4 KiB
Go
// Package blob provides the pipe implementation that uploads files to "blob" providers, such as s3, gcs and azure.
|
|
package blob
|
|
|
|
import (
|
|
"fmt"
|
|
|
|
"github.com/goreleaser/goreleaser/internal/pipe"
|
|
"github.com/goreleaser/goreleaser/internal/semerrgroup"
|
|
"github.com/goreleaser/goreleaser/internal/tmpl"
|
|
"github.com/goreleaser/goreleaser/pkg/context"
|
|
)
|
|
|
|
// Pipe for blobs.
|
|
type Pipe struct{}
|
|
|
|
// String returns the description of the pipe.
|
|
func (Pipe) String() string { return "blobs" }
|
|
func (Pipe) Skip(ctx *context.Context) bool { return len(ctx.Config.Blobs) == 0 }
|
|
|
|
// Default sets the pipe defaults.
|
|
func (Pipe) Default(ctx *context.Context) error {
|
|
for i := range ctx.Config.Blobs {
|
|
blob := &ctx.Config.Blobs[i]
|
|
|
|
if blob.Bucket == "" || blob.Provider == "" {
|
|
return fmt.Errorf("bucket or provider cannot be empty")
|
|
}
|
|
if blob.Folder == "" {
|
|
blob.Folder = "{{ .ProjectName }}/{{ .Tag }}"
|
|
}
|
|
}
|
|
return nil
|
|
}
|
|
|
|
// Publish to specified blob bucket url.
|
|
func (Pipe) Publish(ctx *context.Context) error {
|
|
g := semerrgroup.New(ctx.Parallelism)
|
|
skips := pipe.SkipMemento{}
|
|
for _, conf := range ctx.Config.Blobs {
|
|
conf := conf
|
|
g.Go(func() error {
|
|
b, err := tmpl.New(ctx).Bool(conf.Disable)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
if b {
|
|
skips.Remember(pipe.Skip("configuration is disabled"))
|
|
return nil
|
|
}
|
|
return doUpload(ctx, conf)
|
|
})
|
|
}
|
|
if err := g.Wait(); err != nil {
|
|
return err
|
|
}
|
|
return skips.Evaluate()
|
|
}
|