From 7fbce68530cbeac20704d635c911b14a2fd592f2 Mon Sep 17 00:00:00 2001 From: Joseph Flinn Date: Mon, 14 Dec 2020 19:53:39 +0000 Subject: [PATCH] changing over to manual run of the pipeline and moving from PublishBuildArtifact to PublishPipelineArtifact --- azure-pipelines.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/azure-pipelines.yml b/azure-pipelines.yml index 5275076781..a69d2c9841 100644 --- a/azure-pipelines.yml +++ b/azure-pipelines.yml @@ -4,7 +4,7 @@ # https://docs.microsoft.com/azure/devops/pipelines/languages/javascript trigger: -- main +- none pool: vmImage: 'windows-latest' @@ -35,12 +35,12 @@ steps: - script: ls -alht dist displayName: show executables -- task: PublishBuildArtifacts@1 +- task: PublishPipelineArtifacts@1 inputs: pathToPublish: 'dist/Bitwarden-1.23.1-ia32.appx' artifactName: Bitwarden-$(GIT_COMMIT_TO_BUILD)-ia32.appx -- task: PublishBuildArtifacts@1 +- task: PublishPipelineArtifacts@1 inputs: pathToPublish: 'dist/Bitwarden-1.23.1-x64.appx' artifactName: Bitwarden-$(GIT_COMMIT_TO_BUILD)-x64.appx