mirror of
https://github.com/fluxcd/flagger.git
synced 2026-02-28 08:43:59 +00:00
19 lines
352 B
Makefile
19 lines
352 B
Makefile
TAG?=latest
|
|
|
|
build:
|
|
docker build -t stefanprodan/steerer:$(TAG) . -f Dockerfile
|
|
|
|
push:
|
|
docker push stefanprodan/steerer:$(TAG)
|
|
|
|
test:
|
|
go test ./...
|
|
|
|
verify-codegen:
|
|
./hack/verify-codegen.sh
|
|
|
|
helm:
|
|
cd chart/ && helm package steerer/
|
|
mv chart/*.tgz docs/
|
|
helm repo index docs --url https://stefanprodan.github.io/steerer --merge ./docs/index.yaml
|