Merge pull request #12610 from roidelapluie/release245-nolatest

Do not publish latest docker image for LTS
This commit is contained in:
Julien Pivotto 2023-07-28 13:08:11 +02:00 committed by GitHub
commit 887a77873d
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -29,6 +29,23 @@ include Makefile.common
DOCKER_IMAGE_NAME ?= prometheus DOCKER_IMAGE_NAME ?= prometheus
docker-tag-latest:
@echo Skipping latest
docker-publish:
ifneq ($(DOCKER_IMAGE_TAG),latest)
$(MAKE) common-docker-publish
else
@echo Skipping latest
endif
docker-manifest:
ifneq ($(DOCKER_IMAGE_TAG),latest)
$(MAKE) common-docker-manifest
else
@echo Skipping latest
endif
.PHONY: update-npm-deps .PHONY: update-npm-deps
update-npm-deps: update-npm-deps:
@echo ">> updating npm dependencies" @echo ">> updating npm dependencies"