We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 6855cb2 + a3fa369 commit 19aa2f5Copy full SHA for 19aa2f5
Makefile
@@ -1,12 +1,12 @@
1
REGISTRY?=gcr.io/k8s-minikube
2
-VERSION=v0.0.3
+VERSION=v0.0.4
3
GOOS?=$(shell go env GOOS)
4
5
build: ## Build the gcp-auth-webhook binary
6
CGO_ENABLED=0 GOOS=linux go build -o out/gcp-auth-webhook server.go
7
8
.PHONY: image
9
-image: build ## Create and push multiarch manifest and images
+image: ## Create and push multiarch manifest and images
10
curl -L https://github.com/google/ko/releases/download/v0.8.0/ko_0.8.0_$(GOOS)_x86_64.tar.gz | tar xzf - ko && chmod +x ./ko
11
KO_DOCKER_REPO=$(REGISTRY) ./ko publish -B . --platform all -t $(VERSION)
12
rm ./ko
0 commit comments