mirror of
https://github.com/goreleaser/goreleaser.git
synced 2025-03-17 20:47:50 +02:00
fix: added skip log to s3
This commit is contained in:
parent
99a9da4c3b
commit
3a4e41096f
@ -49,6 +49,9 @@ func (Pipe) Run(ctx *context.Context) error {
|
||||
if ctx.SkipPublish {
|
||||
return pipeline.ErrSkipPublishEnabled
|
||||
}
|
||||
if len(ctx.Config.S3) == 0 {
|
||||
return pipeline.Skip("s3 section is not configured")
|
||||
}
|
||||
var g = semerrgroup.New(ctx.Parallelism)
|
||||
for _, conf := range ctx.Config.S3 {
|
||||
conf := conf
|
||||
|
Loading…
x
Reference in New Issue
Block a user