From 92562946b3b776f3c987221bcaea943697715e2d Mon Sep 17 00:00:00 2001 From: Hardy-Cooper Date: Tue, 9 Feb 2021 10:56:30 -0500 Subject: [PATCH] Updating push command --- pipelines/azure-build.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pipelines/azure-build.yaml b/pipelines/azure-build.yaml index 144e6c4..316da1f 100644 --- a/pipelines/azure-build.yaml +++ b/pipelines/azure-build.yaml @@ -26,5 +26,5 @@ stages: export TAG=${BUILD_SOURCEBRANCH#"refs/tags/v"} if [[ "$TAG" == *stable* ]]; then export BUILD_TYPE=stable; else export BUILD_TYPE=latest; fi docker build --build-arg version=$TAG -t cccs/assemblyline-service-metadefender:$TAG -t cccs/assemblyline-service-metadefender:$BUILD_TYPE . - docker push cccs/assemblyline-service-metadefender + docker push cccs/assemblyline-service-metadefender --all-tags displayName: Deploy to Docker Hub