From 63017fd8700d7d735b07c5f856845518f19a1a78 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?P=C5=99emek=20Vysok=C3=BD?= Date: Mon, 21 Oct 2024 16:14:45 +0200 Subject: [PATCH] Fix the PCS deployment --- ...pipelines-product-construction-service.yml | 22 +++++++++---------- 1 file changed, 11 insertions(+), 11 deletions(-) diff --git a/azure-pipelines-product-construction-service.yml b/azure-pipelines-product-construction-service.yml index 8ac6fa36a8..12bffc0d32 100644 --- a/azure-pipelines-product-construction-service.yml +++ b/azure-pipelines-product-construction-service.yml @@ -210,17 +210,17 @@ stages: scriptLocation: inlineScript inlineScript: > $(Pipeline.Workspace)/ProductConstructionService.Cli/ProductConstructionService.Cli.exe - deploy - --subscriptionId $(subscriptionId) - --resourceGroupName $(resourceGroupName) - --containerRegistryName $(containerRegistryName) - --containerAppName $(containerappName) - --workspaceName $(containerappWorkspaceName) - --containerJobNames $(containerjobNames) - --newImageTag $(newDockerImageTag) - --imageName $(containerName) - --azCliPath "$(azCliPath)" - --redisConnectionString $(redisConnectionString) + deploy + --subscriptionId $(subscriptionId) + --resourceGroupName $(resourceGroupName) + --containerRegistryName $(containerRegistryName) + --containerAppName $(containerappName) + --workspaceName $(containerappWorkspaceName) + --containerJobNames $(containerjobNames) + --newImageTag $(newDockerImageTag) + --imageName $(containerName) + --azCliPath "$(azCliPath)" + --redisConnectionString $(redisConnectionString) displayName: Deploy container app - task: AzureCLI@2