From 11edd6f70b5685b9ab98d79708a8bbd7e3ce9061 Mon Sep 17 00:00:00 2001 From: James Swineson Date: Fri, 17 Apr 2020 05:09:48 -0700 Subject: [PATCH] use CI to build latest image --- azure-pipelines.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/azure-pipelines.yaml b/azure-pipelines.yaml index fe17c23..ce56096 100644 --- a/azure-pipelines.yaml +++ b/azure-pipelines.yaml @@ -69,8 +69,8 @@ jobs: - bash: | set -Eeuo pipefail - docker tag ripe-atlas $(DOCKER_IMAGE_BASENAME):nightly - docker push $(DOCKER_IMAGE_BASENAME):nightly + docker tag ripe-atlas $(DOCKER_IMAGE_BASENAME):latest + docker push $(DOCKER_IMAGE_BASENAME):latest displayName: "Push image" condition: and(succeeded(), eq(variables['Build.SourceBranch'], 'refs/heads/master'), ne(variables['Build.Reason'], 'PullRequest'))