From f0fe5261f2ea64105b033114d90da389203bd245 Mon Sep 17 00:00:00 2001 From: Zeegaan Date: Fri, 30 Sep 2022 13:38:14 +0200 Subject: [PATCH] Add echoing --- build/azure-pipelines.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/build/azure-pipelines.yml b/build/azure-pipelines.yml index 89f3573f56..29ea2ff73e 100644 --- a/build/azure-pipelines.yml +++ b/build/azure-pipelines.yml @@ -482,16 +482,16 @@ stages: inputs: targetType: inline script: | - echo variables.myVar + echo $variables.myVar - task: CopyFiles@2 displayName: Prepare artifacts - condition: eq(variables.myVar, 'true') + condition: eq(variables.myVar, 'True') inputs: sourceFolder: $(Build.SourcesDirectory)/tests/Umbraco.Tests.AcceptanceTest/results/ targetFolder: $(Build.ArtifactStagingDirectory)/playwright - task: PublishPipelineArtifact@1 displayName: "Publish test artifacts" - condition: eq(variables.myVar, 'true') + condition: eq(variables.myVar, 'True') inputs: targetPath: $(Build.ArtifactStagingDirectory) artifact: 'E2E artifacts - $(Agent.OS) - Attempt #$(System.JobAttempt)'