Skip to content

Commit f730dfe

Browse files
fix release-manifests target (#2290)
Signed-off-by: Prajyot Parab <[email protected]>
1 parent 16b72f3 commit f730dfe

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Diff for: Makefile

+2-2
Original file line numberDiff line numberDiff line change
@@ -302,13 +302,13 @@ check-github-token:
302302
.PHONY: release
303303
release: clean-release check-release-tag $(RELEASE_DIR) ## Build and push container images using the latest git tag for the commit
304304
git checkout "${RELEASE_TAG}"
305-
CORE_CONTROLLER_IMG=$(PROD_REGISTRY)/$(CORE_IMAGE_NAME) $(MAKE) release-manifests
305+
$(MAKE) release-manifests
306306
$(MAKE) release-templates
307307
$(MAKE) release-binaries
308308

309309
.PHONY: release-manifests
310310
release-manifests: ## Build the manifests to publish with a release
311-
$(MAKE) $(RELEASE_DIR)/$(CORE_MANIFEST_FILE).yaml TAG=$(RELEASE_TAG)
311+
$(MAKE) $(RELEASE_DIR)/$(CORE_MANIFEST_FILE).yaml TAG=$(RELEASE_TAG) CORE_CONTROLLER_IMG=$(PROD_REGISTRY)/$(CORE_IMAGE_NAME)
312312
# Add metadata to the release artifacts
313313
cp metadata.yaml $(RELEASE_DIR)/metadata.yaml
314314

0 commit comments

Comments
 (0)