From dfcd558124724ed65631491d96e79af50b395bc1 Mon Sep 17 00:00:00 2001 From: Aaron Stannard Date: Tue, 21 May 2019 08:21:00 -0500 Subject: [PATCH] close #3796 - glob all artifact subfolderS (#3802) --- build-system/azure-pipeline.template.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build-system/azure-pipeline.template.yaml b/build-system/azure-pipeline.template.yaml index a2f20a8e869..7a716139f35 100644 --- a/build-system/azure-pipeline.template.yaml +++ b/build-system/azure-pipeline.template.yaml @@ -41,7 +41,7 @@ jobs: displayName: 'Copy Build Output' inputs: sourceFolder: ${{ parameters.outputDirectory }} - contents: '*' + contents: '**\*' targetFolder: $(Build.ArtifactStagingDirectory) continueOnError: boolean # 'true' if future steps should run even if this step fails; defaults to 'false' - task: PublishBuildArtifacts@1