mirror of
https://github.com/goreleaser/goreleaser.git
synced 2025-01-10 03:47:03 +02:00
64b1f14a86
* refactor: merging archive in the same repo * refactor: merging archive in the same repo * refactor: better organizing packages * refactor: fixing renames * fix: new dep version * fix: makefile * fix: zip/tar tests * fix: gitigonore * fix: s3 tests * fix: archive test
53 lines
1.3 KiB
Go
53 lines
1.3 KiB
Go
// Package put provides a Pipe that push using HTTP PUT
|
|
package put
|
|
|
|
import (
|
|
h "net/http"
|
|
|
|
"github.com/goreleaser/goreleaser/internal/http"
|
|
"github.com/goreleaser/goreleaser/internal/pipeline"
|
|
"github.com/goreleaser/goreleaser/pkg/context"
|
|
"github.com/pkg/errors"
|
|
)
|
|
|
|
// Pipe for http publishing
|
|
type Pipe struct{}
|
|
|
|
// String returns the description of the pipe
|
|
func (Pipe) String() string {
|
|
return "releasing with HTTP PUT"
|
|
}
|
|
|
|
// Default sets the pipe defaults
|
|
func (Pipe) Default(ctx *context.Context) error {
|
|
return http.Defaults(ctx.Config.Puts)
|
|
}
|
|
|
|
// Run the pipe
|
|
func (Pipe) Run(ctx *context.Context) error {
|
|
|
|
if len(ctx.Config.Puts) == 0 {
|
|
return pipeline.Skip("put section is not configured")
|
|
}
|
|
|
|
// Check requirements for every instance we have configured.
|
|
// If not fulfilled, we can skip this pipeline
|
|
for _, instance := range ctx.Config.Puts {
|
|
if skip := http.CheckConfig(ctx, &instance, "put"); skip != nil {
|
|
return pipeline.Skip(skip.Error())
|
|
}
|
|
}
|
|
|
|
return http.Upload(ctx, ctx.Config.Puts, "put", func(res *h.Response) (string, error) {
|
|
if c := res.StatusCode; c < 200 || 299 < c {
|
|
return "", errors.Errorf("unexpected http response status: %s", res.Status)
|
|
}
|
|
loc, err := res.Location()
|
|
if err != nil {
|
|
return "", errors.Errorf("getting http response location: %s", err)
|
|
}
|
|
return loc.String(), err
|
|
})
|
|
|
|
}
|