-
-
Notifications
You must be signed in to change notification settings - Fork 943
/
upload.go
47 lines (39 loc) · 1.17 KB
/
upload.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
// 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
})
}