1
0
mirror of https://github.com/goreleaser/goreleaser.git synced 2025-01-10 03:47:03 +02:00
goreleaser/internal/pipe/upload/upload.go
Carlos Alexandro Becker f61d8c820c
fix: improve output a bit (#2174)
* fix: improve output a bit

Signed-off-by: Carlos Alexandro Becker <caarlos0@gmail.com>

* fix: improve output a bit

Signed-off-by: Carlos Alexandro Becker <caarlos0@gmail.com>

* fix: revert unwanted changes

Signed-off-by: Carlos Alexandro Becker <caarlos0@gmail.com>

* fix: skip err

Signed-off-by: Carlos Alexandro Becker <caarlos0@gmail.com>

* fix: tests

Signed-off-by: Carlos Alexandro Becker <caarlos0@gmail.com>

* fix: test

Signed-off-by: Carlos Alexandro Becker <caarlos0@gmail.com>

* chore: build

Signed-off-by: Carlos Alexandro Becker <caarlos0@gmail.com>

Co-authored-by: kodiakhq[bot] <49736102+kodiakhq[bot]@users.noreply.github.com>
2021-04-19 09:31:57 -03:00

48 lines
1.2 KiB
Go

// Package upload provides a Pipe that push using HTTP.
package upload
import (
"fmt"
h "net/http"
"github.com/goreleaser/goreleaser/internal/http"
"github.com/goreleaser/goreleaser/internal/pipe"
"github.com/goreleaser/goreleaser/pkg/context"
)
// Pipe for http publishing.
type Pipe struct{}
// String returns the description of the pipe.
func (Pipe) String() string {
return "http upload"
}
// Default sets the pipe defaults.
func (Pipe) Default(ctx *context.Context) error {
return http.Defaults(ctx.Config.Uploads)
}
// Publish artifacts.
func (Pipe) Publish(ctx *context.Context) error {
if len(ctx.Config.Uploads) == 0 {
return pipe.ErrSkipDisabledPipe
}
// Check requirements for every instance we have configured.
// If not fulfilled, we can skip this pipeline
for _, instance := range ctx.Config.Uploads {
instance := instance
if skip := http.CheckConfig(ctx, &instance, "upload"); skip != nil {
return pipe.Skip(skip.Error())
}
}
return http.Upload(ctx, ctx.Config.Uploads, "upload", func(res *h.Response) error {
if c := res.StatusCode; c < 200 || 299 < c {
return fmt.Errorf("unexpected http response status: %s", res.Status)
}
return nil
})
}