From 534368549141ba680d83b7ce05bb0b084c8bfbc2 Mon Sep 17 00:00:00 2001 From: "Collin M. Barrett" Date: Wed, 25 Sep 2019 08:06:04 -0500 Subject: [PATCH] specify image name in tag defs --- azure-pipelines.web.yaml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/azure-pipelines.web.yaml b/azure-pipelines.web.yaml index 9bc4f6893..164faf41f 100644 --- a/azure-pipelines.web.yaml +++ b/azure-pipelines.web.yaml @@ -39,8 +39,8 @@ steps: Dockerfile: "src/FilterLists.Web/Dockerfile" buildContext: "." tags: | - latest - $(Build.BuildId) + filterlists.web:latest + filterlists.web:$(Build.BuildId) - task: Docker@2 displayName: login to github package registry @@ -57,5 +57,5 @@ steps: command: "push" condition: "and(succeeded(), eq(variables['Build.SourceBranch'], 'refs/heads/master'))" tags: | - latest - $(Build.BuildId) + filterlists.web:latest + filterlists.web:$(Build.BuildId)