diff --git a/build/azure-devops/multiarch.yaml b/build/azure-devops/multiarch.yaml index 0270e9d9b..93f2451bc 100644 --- a/build/azure-devops/multiarch.yaml +++ b/build/azure-devops/multiarch.yaml @@ -20,4 +20,7 @@ jobs: docker login -u $(DOCKER_USER) -p $(DOCKER_PASSWORD) docker --config ~/.docker manifest create eshop/${{ parameters.image }}:${{ parameters.branch }} eshop/${{ parameters.image }}:linux-${{ parameters.branch }} eshop/${{ parameters.image }}:win-${{ parameters.branch }} docker --config ~/.docker manifest create eshop/${{ parameters.image }}:latest eshop/${{ parameters.image }}:linux-latest eshop/${{ parameters.image }}:win-latest - displayName: 'Create Manifest' \ No newline at end of file + displayName: 'Create Manifest' + dependsOn: + - BuildWindows + - BuildLinux