Skip to content

Commit b4a25a7

Browse files
šŸ› fix release artefacts after monorepo changes and release candidate 1.2.0-rc1 (#1661) (#1664)
- fix: the reference in the make quickstart to get the latest release version properly - fix: replace the devel tag image with the version from the release
1 parent f055efc commit b4a25a7

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

ā€ŽMakefile

+2-2
Original file line numberDiff line numberDiff line change
@@ -324,9 +324,9 @@ release: $(GORELEASER) #EXHELP Runs goreleaser for the operator-controller. By d
324324
OPERATOR_CONTROLLER_IMAGE_REPO=$(IMAGE_REPO) CATALOGD_IMAGE_REPO=$(CATALOG_IMAGE_REPO) $(GORELEASER) $(GORELEASER_ARGS)
325325

326326
.PHONY: quickstart
327-
quickstart: export MANIFEST := ./operator-controller.yaml
327+
quickstart: export MANIFEST := https://github.com/operator-framework/operator-controller/releases/download/$(VERSION)/operator-controller.yaml
328328
quickstart: $(KUSTOMIZE) manifests #EXHELP Generate the unified installation release manifests and scripts.
329-
($(KUSTOMIZE) build $(KUSTOMIZE_BUILD_DIR) && echo "---" && $(KUSTOMIZE) build catalogd/config/overlays/cert-manager | sed "s/cert-git-version/cert-$(VERSION)/g") > $(MANIFEST)
329+
($(KUSTOMIZE) build $(KUSTOMIZE_BUILD_DIR) && echo "---" && $(KUSTOMIZE) build catalogd/config/overlays/cert-manager) | sed "s/cert-git-version/cert-$(VERSION)/g" | sed "s/:devel/:$(VERSION)/g" > operator-controller.yaml
330330
envsubst '$$CERT_MGR_VERSION,$$INSTALL_DEFAULT_CATALOGS,$$MANIFEST' < scripts/install.tpl.sh > install.sh
331331

332332
##@ Docs

0 commit comments

Comments
Ā (0)