mirror of
https://github.com/prometheus/prometheus.git
synced 2024-11-09 23:24:05 -08:00
Do not publish latest docker image for LTS
This is a LTS version, so it will get releases for a year. However, we do not want to push :latest for the LTS, so we skip them in this release branch. Signed-off-by: Julien Pivotto <roidelapluie@o11y.eu>
This commit is contained in:
parent
8ef767e396
commit
8d803c858b
17
Makefile
17
Makefile
|
@ -29,6 +29,23 @@ include Makefile.common
|
|||
|
||||
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
|
||||
update-npm-deps:
|
||||
@echo ">> updating npm dependencies"
|
||||
|
|
Loading…
Reference in a new issue