From 8241bb26797f3dc918b226fc913f89f2dfb1bb5e Mon Sep 17 00:00:00 2001 From: Eugene Pankov Date: Wed, 26 Jun 2019 21:47:34 +0200 Subject: [PATCH] azure artifacts --- .gitignore | 1 + azure-pipelines.yml | 9 +++++++-- 2 files changed, 8 insertions(+), 2 deletions(-) diff --git a/.gitignore b/.gitignore index a6d60b7c..188054a5 100644 --- a/.gitignore +++ b/.gitignore @@ -23,3 +23,4 @@ yarn-error.log docs/api .travis.ssh.key +*.code-workspace diff --git a/azure-pipelines.yml b/azure-pipelines.yml index 83c09c90..131e5ecb 100644 --- a/azure-pipelines.yml +++ b/azure-pipelines.yml @@ -31,7 +31,12 @@ steps: - script: node scripts/build-windows.js displayName: 'Package' +- task: CopyFiles@2 + inputs: + contents: 'dist\\*.exe' + targetFolder: $(Build.ArtifactStagingDirectory) + - task: PublishBuildArtifacts@1 inputs: - pathtoPublish: 'dist\\*.exe' - artifactName: build + pathtoPublish: $(Build.ArtifactStagingDirectory) + artifactName: Build