From 1251ddaf5fca7ea83b67b0762bdc98194b50c721 Mon Sep 17 00:00:00 2001 From: Joseph Flinn Date: Mon, 14 Dec 2020 20:15:37 +0000 Subject: [PATCH] changing pathToPublish to absolute path --- azure-pipelines.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/azure-pipelines.yml b/azure-pipelines.yml index 45d9e1cc555..2ae935be518 100644 --- a/azure-pipelines.yml +++ b/azure-pipelines.yml @@ -37,10 +37,10 @@ steps: - task: PublishPipelineArtifact@1 inputs: - pathToPublish: 'dist/Bitwarden-1.23.1-ia32.appx' + pathToPublish: '$(System.DefaultWorkingDirectory)/dist/Bitwarden-1.23.1-ia32.appx' artifactName: Bitwarden-$(GIT_COMMIT_TO_BUILD)-ia32.appx - task: PublishPipelineArtifact@1 inputs: - pathToPublish: 'dist/Bitwarden-1.23.1-x64.appx' + pathToPublish: '$(System.DefaultWorkingDirectory)/dist/Bitwarden-1.23.1-x64.appx' artifactName: Bitwarden-$(GIT_COMMIT_TO_BUILD)-x64.appx