1
0
mirror of https://github.com/goreleaser/goreleaser.git synced 2025-02-07 13:31:37 +02:00

fix(chocolatey): skip publish is check by publish pipe (#4273)

the publish pipe, which runs all publishers, already skips all
publishers if skip publish is set, so this check is not needed here.

Signed-off-by: Carlos Alexandro Becker <caarlos0@users.noreply.github.com>
This commit is contained in:
Carlos Alexandro Becker 2023-09-04 16:20:58 -03:00 committed by GitHub
parent a962e3b3cf
commit da1d3f4fcf
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 1 additions and 11 deletions

View File

@ -12,7 +12,6 @@ import (
"github.com/caarlos0/log"
"github.com/goreleaser/goreleaser/internal/artifact"
"github.com/goreleaser/goreleaser/internal/client"
"github.com/goreleaser/goreleaser/internal/pipe"
"github.com/goreleaser/goreleaser/internal/tmpl"
"github.com/goreleaser/goreleaser/pkg/config"
"github.com/goreleaser/goreleaser/pkg/context"
@ -78,10 +77,6 @@ func (Pipe) Run(ctx *context.Context) error {
// Publish packages.
func (Pipe) Publish(ctx *context.Context) error {
if ctx.SkipPublish {
return pipe.ErrSkipPublishEnabled
}
artifacts := ctx.Artifacts.Filter(
artifact.ByType(artifact.PublishableChocolatey),
).List()

View File

@ -220,11 +220,6 @@ func TestPublish(t *testing.T) {
skip bool
err string
}{
{
name: "skip publish",
skip: true,
err: "publishing is disabled",
},
{
name: "no artifacts",
},
@ -287,7 +282,7 @@ func TestPublish(t *testing.T) {
cmd = stdCmd{}
})
ctx := testctx.New(func(ctx *context.Context) { ctx.SkipPublish = tt.skip })
ctx := testctx.New()
for _, artifact := range tt.artifacts {
ctx.Artifacts.Add(&artifact)
}