diff --git a/devops/azure-pipelines.yml b/devops/azure-pipelines.yml index f754ef8..4c9af3f 100644 --- a/devops/azure-pipelines.yml +++ b/devops/azure-pipelines.yml @@ -26,10 +26,11 @@ stages: - stage: Build displayName: Build Docker Images (CI Only) jobs: + - job: BuildClient displayName: Build Client Image steps: - - script: | + - powershell: | $img = "$(clientImage)" $ctx = "$(clientCtx)" $df = Join-Path $ctx "Dockerfile" @@ -50,7 +51,7 @@ stages: - job: BuildAPI displayName: Build API Image steps: - - script: | + - powershell: | $img = "$(apiImage)" $ctx = "$(apiCtx)" $df = Join-Path $ctx "Dockerfile" @@ -66,4 +67,4 @@ stages: -t "$img:latest" ` -f "$df" ` "$ctx" - displayName: Build API (with local cache) + displayName: Build API (with local cache) \ No newline at end of file