File tree Expand file tree Collapse file tree 1 file changed +8
-0
lines changed
Expand file tree Collapse file tree 1 file changed +8
-0
lines changed Original file line number Diff line number Diff line change 9595 docker tag ${DOCKER_IMAGE} ${DOCKER_ORG}/${DOCKER_IMAGE}:${VERSION}
9696 docker push ${DOCKER_ORG}/${DOCKER_IMAGE}:${VERSION}
9797
98+ echo Pushing image to Docker Hub with latest tag
99+ docker tag ${DOCKER_IMAGE} ${DOCKER_ORG}/${DOCKER_IMAGE}:latest
100+ docker push ${DOCKER_ORG}/${DOCKER_IMAGE}:latest
101+
98102 deploy-analysis-prod :
99103 docker :
100104 - image : circleci/node:6
@@ -152,6 +156,10 @@ jobs:
152156 docker tag ${DOCKER_IMAGE} ${DOCKER_ORG}/${DOCKER_IMAGE}:${VERSION}
153157 docker push ${DOCKER_ORG}/${DOCKER_IMAGE}:${VERSION}
154158
159+ echo Pushing image to Docker Hub with latest tag
160+ docker tag ${DOCKER_IMAGE} ${DOCKER_ORG}/${DOCKER_IMAGE}:latest
161+ docker push ${DOCKER_ORG}/${DOCKER_IMAGE}:latest
162+
155163workflows :
156164 version : 2
157165 build-deploy :
You can’t perform that action at this time.
0 commit comments