mirror of
https://github.com/helm/helm.git
synced 2026-05-28 04:35:48 -04:00
fix: canary build file names
Signed-off-by: Terry Howe <terrylhowe@gmail.com>
This commit is contained in:
parent
5a75279c1a
commit
eaa09100b9
2 changed files with 5 additions and 1 deletions
|
|
@ -78,7 +78,7 @@ checksum:
|
|||
name_template: 'checksums.txt'
|
||||
|
||||
snapshot:
|
||||
version_template: "{{ incpatch .Version }}-next"
|
||||
version_template: "{{ if .Env.GORELEASER_CURRENT_TAG }}{{ .Env.GORELEASER_CURRENT_TAG }}{{ else }}{{ incpatch .Version }}-next{{ end }}"
|
||||
|
||||
changelog:
|
||||
sort: asc
|
||||
|
|
|
|||
4
Makefile
4
Makefile
|
|
@ -179,7 +179,11 @@ build-cross: $(GORELEASER)
|
|||
|
||||
.PHONY: dist
|
||||
dist:
|
||||
ifeq ($(VERSION),canary)
|
||||
GORELEASER_CURRENT_TAG=canary LDFLAGS='$(LDFLAGS)' $(GORELEASER) release --snapshot --clean
|
||||
else
|
||||
LDFLAGS='$(LDFLAGS)' $(GORELEASER) release --snapshot --clean
|
||||
endif
|
||||
|
||||
.PHONY: fetch-dist
|
||||
fetch-dist:
|
||||
|
|
|
|||
Loading…
Reference in a new issue