From 1b95fe3cd8b085839c71e92acd8fd5cd6df04418 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Luis=20=C3=81ngel=20San=20Mart=C3=ADn?= Date: Wed, 11 Sep 2019 16:14:04 +0200 Subject: [PATCH] Upload only files I don't know if there is a better pattern to define files only --- azure-pipelines.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/azure-pipelines.yml b/azure-pipelines.yml index 2983cc4a..92305f1b 100644 --- a/azure-pipelines.yml +++ b/azure-pipelines.yml @@ -118,10 +118,10 @@ jobs: buildType: 'current' targetPath: $(Build.SourcesDirectory)/dev_bin - script: | - ls -lah $(Build.SourcesDirectory)/dev_bin + ls -lah $(Build.SourcesDirectory)/dev_bin/***.* - task: cURLUploader@2 inputs: - files: '$(Build.SourcesDirectory)/dev_bin/**' + files: '$(Build.SourcesDirectory)/dev_bin/***.*' authType: 'userAndPass' username: $(username) password: $(api-key)