Skip to content

Commit 5e87da6

Browse files
fix: typo & add comments
1 parent e1d0165 commit 5e87da6

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

Makefile

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -262,7 +262,7 @@ dev-apply-metric-dynatrace-prod: ## Apply metric using Dynatrace production exam
262262
##@ Helm
263263

264264
HELM_VERSION ?= v3.18.0
265-
OCI_REGISTRY ?= ghcr.io/sap/charts
265+
OCI_REGISTRY ?= ghcr.io/openmcp-project/charts
266266

267267
$(HELM): $(LOCALBIN)
268268
@if test -x $(LOCALBIN)/helm && ! $(LOCALBIN)/helm version --short | grep -q $(HELM_VERSION); then \
@@ -275,11 +275,11 @@ $(HELM): $(LOCALBIN)
275275
rm -rf /tmp/$(shell uname | tr '[:upper:]' '[:lower:]')-amd64)
276276

277277
.PHONY: helm-package
278-
helm-package: $(HELM) helm-chart
279-
$(LOCALBIN)/helm package charts/$(PROJECT_FULL_NAME)/ -d ./ --version $(shell cat VERSION)
278+
helm-package: $(HELM) helm-chart ## Package the Helm chart.
279+
$(LOCALBIN)/helm package charts/$(PROJECT_FULL_NAME)/ -d ./ --version $(shell cat VERSION)
280280

281281
.PHONY: helm-push
282-
helm-push: $(HELM)
282+
helm-push: $(HELM) ## Push the Helm chart to the OCI registry.
283283
$(LOCALBIN)/helm push $(PROJECT_FULL_NAME)-$(shell cat VERSION).tgz oci://$(OCI_REGISTRY)
284284

285285
.PHONY: helm-chart

0 commit comments

Comments
 (0)