From a35c60de0a0e46d55da5c42cd5e0e45b2caedfef Mon Sep 17 00:00:00 2001 From: Christophe Peugnet <3845786+tossnet@users.noreply.github.com> Date: Thu, 21 Aug 2025 22:02:54 +0200 Subject: [PATCH] fix following the copilot's comments --- instructions/azure-devops-pipelines.instructions.md | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/instructions/azure-devops-pipelines.instructions.md b/instructions/azure-devops-pipelines.instructions.md index 72c3574..edc37c5 100644 --- a/instructions/azure-devops-pipelines.instructions.md +++ b/instructions/azure-devops-pipelines.instructions.md @@ -162,11 +162,12 @@ stages: deploy: steps: - download: current + displayName: 'Download drop artifact' artifact: drop - task: AzureWebApp@1 displayName: 'Deploy to Azure Web App' inputs: - azureSubscription: 'production-service-connection' + azureSubscription: 'staging-service-connection' appType: 'webApp' appName: 'myapp-staging' package: '$(Pipeline.Workspace)/drop/**/*.zip'