From bc7239d3d7726e733834cee941a45786e1cf4133 Mon Sep 17 00:00:00 2001 From: rdbsolutions Date: Mon, 12 Jul 2021 16:39:13 +0100 Subject: [PATCH] changed filter to exclude node and git folders --- azure-pipelines.yml | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/azure-pipelines.yml b/azure-pipelines.yml index 299e22cb..12187cc9 100644 --- a/azure-pipelines.yml +++ b/azure-pipelines.yml @@ -24,8 +24,9 @@ steps: displayName: "Copy Files to: $(build.artifactstagingdirectory)" inputs: Contents: | - ** - !*node_modules + **/* + !node_modules/**/* + !.git/**/* TargetFolder: "$(build.artifactstagingdirectory)" - task: PublishBuildArtifacts@1