From 62a7db88fda8f8540374d5aa1149095ab559b695 Mon Sep 17 00:00:00 2001 From: Matt Jeanes Date: Sat, 7 Mar 2020 21:27:43 +0000 Subject: [PATCH] Update build-steps.yml --- .azuredevops/pipelines/templates/build-steps.yml | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/.azuredevops/pipelines/templates/build-steps.yml b/.azuredevops/pipelines/templates/build-steps.yml index b21fa3804..795f6b103 100644 --- a/.azuredevops/pipelines/templates/build-steps.yml +++ b/.azuredevops/pipelines/templates/build-steps.yml @@ -40,10 +40,16 @@ steps: inputs: projectDirectory: '$(UiLocation)' arguments: 'run build' + +- task: PublishPipelineArtifact@1 + inputs: + targetPath: '$(UiLocation)/dist' + artifact: 'angular_dist' + publishLocation: 'pipeline' - task: DotNetCoreCLI@2 displayName: Run Unit Tests inputs: comand: 'test' projects: '$(TestProject)' - continueOnError: true \ No newline at end of file + continueOnError: true