From 1789680447de230177f9c70a4ffe23df98f90ce2 Mon Sep 17 00:00:00 2001 From: David Justice Date: Sun, 17 May 2020 10:37:13 -0700 Subject: [PATCH] fix: change to piping to release yaml (#90) --- Makefile | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/Makefile b/Makefile index 0150b44946d..3ddafa58af2 100644 --- a/Makefile +++ b/Makefile @@ -196,8 +196,7 @@ docker-push: ## Push the docker image .PHONY: dist dist: $(KUSTOMIZE) mkdir -p dist - $(KUSTOMIZE) build config/default > ./dist/release.yaml - sed -i '' "s_${CONFIG_REGISTRY}_${REGISTRY}/${IMG}_" ./dist/release.yaml # ran into issues with GH action closing stdout + $(KUSTOMIZE) build config/default | sed "s_${CONFIG_REGISTRY}_${REGISTRY}/${IMG}_" > dist/release.yaml .PHONY: release release: dist docker-build docker-push ## Build, push, generate dist for release \ No newline at end of file