1
0
mirror of https://github.com/smallstep/cli.git synced 2025-04-19 10:42:15 +03:00

Remove goreleaser-local target in lieu of goreleaser

The new target isn't needed, as the existing `goreleaser` target
was created primarily for running it local and manually. There's
no need to push artifacts when running that target.
This commit is contained in:
Herman Slatman 2025-04-15 16:06:35 +02:00
parent b14f5534e0
commit 5d86f91a2d
No known key found for this signature in database
GPG Key ID: F4D8A44EA0A75A4F

View File

@ -133,15 +133,6 @@ $(PREFIX)/$(BINNAME): $(SRC)
github.com/smallstep/cli/cmd/step
goreleaser:
$Q mkdir -p $(PREFIX)
$Q $(GOOS_OVERRIDE) $(CGO_OVERRIDE) DEBUG=$(DEBUG) goreleaser build \
--id $(GORELEASER_BUILD_ID) \
--snapshot \
--single-target \
--clean \
--output $(PREFIX)/$(BINNAME)
goreleaser-local:
$Q mkdir -p $(PREFIX)
$Q $(GOOS_OVERRIDE) $(CGO_OVERRIDE) DEBUG=$(DEBUG) goreleaser build \
--id $(GORELEASER_BUILD_ID) \
@ -151,8 +142,7 @@ goreleaser-local:
--skip=$(GORELEASER_SKIP) \
--output $(PREFIX)/$(BINNAME)
.PHONY: build goreleaser goreleaser-local
.PHONY: build goreleaser
#########################################