From 08d94be48a21fe64586ba13dd6c8c1fc0997332b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Luis=20=C3=81ngel=20San=20Mart=C3=ADn?= Date: Wed, 11 Sep 2019 13:58:15 +0200 Subject: [PATCH] Try to upload all files to bintray --- azure-pipelines.yml | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/azure-pipelines.yml b/azure-pipelines.yml index 76d012b1..dfb8d5ae 100644 --- a/azure-pipelines.yml +++ b/azure-pipelines.yml @@ -107,13 +107,24 @@ jobs: - Windows_x86 - Windows_x64 condition: succeeded() + variables: + - group: bintray pool: vmImage: 'ubuntu-16.04' steps: + - template: azure-pipelines-build-number.yml - task: DownloadPipelineArtifact@2 inputs: buildType: 'current' targetPath: $(Build.SourcesDirectory)/dev_bin - script: | ls -lah $(Build.SourcesDirectory)/dev_bin + - task: cURLUploader@2 + inputs: + files: '$(Build.SourcesDirectory)/dev_bin/**/*.*' + authType: 'userAndPass' + username: $(username) + password: $(api-key) + url: https://api.bintray.com/content/luisangelsm/YACReader/DevBuilds/$(Build.BuildNumber) + \ No newline at end of file