File tree Expand file tree Collapse file tree 4 files changed +316
-0
lines changed Expand file tree Collapse file tree 4 files changed +316
-0
lines changed Original file line number Diff line number Diff line change @@ -53,6 +53,12 @@ $(GORELEASER): $(BINGO_DIR)/goreleaser.mod
53
53
@echo " (re)installing $( GOBIN) /goreleaser-v1.26.2"
54
54
@cd $(BINGO_DIR ) && GOWORK=off $(GO ) build -mod=mod -modfile=goreleaser.mod -o=$(GOBIN ) /goreleaser-v1.26.2 " github.com/goreleaser/goreleaser"
55
55
56
+ HELM := $(GOBIN ) /helm-v3.18.4
57
+ $(HELM ) : $(BINGO_DIR ) /helm.mod
58
+ @# Install binary/ries using Go 1.14+ build command. This is using bwplotka/bingo-controlled, separate go module with pinned dependencies.
59
+ @echo " (re)installing $( GOBIN) /helm-v3.18.4"
60
+ @cd $(BINGO_DIR ) && GOWORK=off $(GO ) build -mod=mod -modfile=helm.mod -o=$(GOBIN ) /helm-v3.18.4 " helm.sh/helm/v3/cmd/helm"
61
+
56
62
KIND := $(GOBIN ) /kind-v0.29.0
57
63
$(KIND ) : $(BINGO_DIR ) /kind.mod
58
64
@# Install binary/ries using Go 1.14+ build command. This is using bwplotka/bingo-controlled, separate go module with pinned dependencies.
Original file line number Diff line number Diff line change
1
+ module _ // Auto generated by https://github.com/bwplotka/bingo. DO NOT EDIT
2
+
3
+ go 1.24.3
4
+
5
+ require helm.sh/helm/v3 v3.18.4 // cmd/helm
You can’t perform that action at this time.
0 commit comments