We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1caa15e commit 9426ce0Copy full SHA for 9426ce0
Makefile
@@ -274,3 +274,16 @@ generate-test-crs:
274
envsubst < "$$template" > "$${template}.tmp" && mv "$${template}.tmp" "$$template"; \
275
done' sh {} +
276
@echo crs generated
277
+
278
279
+PUBLISH_IMAGES ?= crossplane/provider-btp crossplane/provider-btp-controller
280
281
+.PONY: publish
282
+publish:
283
+ @$(INFO) "Publishing images $(PUBLISH_IMAGES) to $(DOCKER_REGISTRY)"
284
+ @for image in $(PUBLISH_IMAGES); do \
285
+ echo "Publishing image $(DOCKER_REGISTRY)/$${image}:$(VERSION)"; \
286
+ docker push $(DOCKER_REGISTRY)/$${image}:$(VERSION); \
287
+ done
288
+ @$(OK) "Publishing images $(PUBLISH_IMAGES) to $(DOCKER_REGISTRY)"
289
0 commit comments