From 23dfc769e44325ed6444b76c21d77a10fddc6fc0 Mon Sep 17 00:00:00 2001 From: "Collin M. Barrett" Date: Tue, 24 Sep 2019 20:02:23 -0500 Subject: [PATCH] try alt tags declaration, add displayNames back --- azure-pipelines.web.yaml | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/azure-pipelines.web.yaml b/azure-pipelines.web.yaml index 644fad5b3..134b5b16c 100644 --- a/azure-pipelines.web.yaml +++ b/azure-pipelines.web.yaml @@ -6,6 +6,7 @@ pool: steps: - task: Docker@2 + displayName: build inputs: command: "build" Dockerfile: "src/FilterLists.Web/Dockerfile" @@ -15,10 +16,11 @@ steps: "docker.pkg.github.com/collinbarrett/filterlists:$(Build.BuildId)" - task: Docker@2 + displayName: push inputs: containerRegistry: "GitHub Docker Package Registry - FilterLists" repository: "docker.pkg.github.com/collinbarrett/filterlists" command: "push" tags: | - "docker.pkg.github.com/collinbarrett/filterlists:latest" - "docker.pkg.github.com/collinbarrett/filterlists:$(Build.BuildId)" + latest + $(Build.BuildId)