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.
2 parents 42be8c4 + e17f0e4 commit 5907d38Copy full SHA for 5907d38
.circleci/config.yml
@@ -95,6 +95,9 @@ jobs:
95
name: Build
96
command: |
97
touch build-image/.uptodate
98
+ if [ -n "$CIRCLE_TAG" ]; then
99
+ export IMAGE_TAG=$CIRCLE_TAG
100
+ fi
101
make BUILD_IN_CONTAINER=false
102
103
- store_artifacts:
Makefile
@@ -4,7 +4,7 @@
4
# Boiler plate for bulding Docker containers.
5
# All this must go at top of file I'm afraid.
6
IMAGE_PREFIX ?= quay.io/cortexproject/
7
-IMAGE_TAG := $(shell ./tools/image-tag)
+IMAGE_TAG ?= $(shell ./tools/image-tag)
8
GIT_REVISION := $(shell git rev-parse HEAD)
9
UPTODATE := .uptodate
10
0 commit comments