diff --git a/azure-pipelines.web.yaml b/azure-pipelines.web.yaml index 4f5e9d1f4..9cdd5a344 100644 --- a/azure-pipelines.web.yaml +++ b/azure-pipelines.web.yaml @@ -6,27 +6,19 @@ pool: steps: - task: Docker@2 - displayName: login to github package registry inputs: - containerRegistry: "GitHub Docker Package Registry - FilterLists" - command: login - - - task: Docker@2 - displayName: build - inputs: - command: build - Dockerfile: src/FilterLists.Web/Dockerfile - buildContext: . + command: "build" + Dockerfile: "src/FilterLists.Web/Dockerfile" + buildContext: "." tags: | latest $(Build.BuildId) - task: Docker@2 - displayName: push inputs: containerRegistry: "GitHub Docker Package Registry - FilterLists" - repository: collinbarrett/FilterLists/filterlists.web - command: push + repository: "docker.pkg.github.com/collinbarrett/filterlists" + command: "push" tags: | latest $(Build.BuildId)