diff options
Diffstat (limited to 'azure-pipelines.yml')
-rw-r--r-- | azure-pipelines.yml | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/azure-pipelines.yml b/azure-pipelines.yml index 99772121..4b06f16f 100644 --- a/azure-pipelines.yml +++ b/azure-pipelines.yml @@ -26,3 +26,14 @@ steps: command: test projects: '**/*Tests/*.csproj' arguments: '--configuration $(buildConfiguration) --collect "Code coverage"' + +- task: DotNetCoreCLI@2 + inputs: + command: publish + projects: Timeline/Timeline.csproj + arguments: -o ./publish/ + +- task: PublishPipelineArtifact@0 + inputs: + artifactName: 'timeline' + targetPath: Timeline/publish/ |