mirror of
https://github.com/goreleaser/goreleaser.git
synced 2025-03-21 21:07:19 +02:00
The PR cleans up unnecessary loop variable copying and enables the [`copyloopvar`](https://golangci-lint.run/usage/linters/#copyloopvar) linter for detecting this redundant variable copying. #### Additional notes After the project upgraded to Go version 1.22 in #4779, copying variables inside a `for` loop became unnecessary. See this [blog post](https://go.dev/blog/loopvar-preview) for a detailed explanation. The `copyloopvar` linter is only available from `golangci-lint` v1.57 onwards, so we also need to update this tool.
42 lines
1.2 KiB
Go
42 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" }
|
|
func (Pipe) Skip(ctx *context.Context) bool { return len(ctx.Config.Uploads) == 0 }
|
|
|
|
// 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 {
|
|
// Check requirements for every instance we have configured.
|
|
// If not fulfilled, we can skip this pipeline
|
|
for _, instance := range ctx.Config.Uploads {
|
|
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
|
|
})
|
|
}
|