From 372d3b95f6482e4e8e5b0decb9420542ca1a8588 Mon Sep 17 00:00:00 2001 From: tidusjar Date: Fri, 21 Feb 2020 13:13:42 +0000 Subject: [PATCH] wip --- .../pipelines/templates/publish-os-steps.yml | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/.azuredevops/pipelines/templates/publish-os-steps.yml b/.azuredevops/pipelines/templates/publish-os-steps.yml index d519facbe..0b6ae42c8 100644 --- a/.azuredevops/pipelines/templates/publish-os-steps.yml +++ b/.azuredevops/pipelines/templates/publish-os-steps.yml @@ -14,24 +14,24 @@ jobs: steps: - task: DotNetCoreCLI@2 - displayName: publish $(parameters.name) + displayName: publish ${{ parameters.name }} inputs: command: 'publish' publishWebProjects: true arguments: '-c $(BuildConfiguration) -r "$(parameters.Runtime)" -o $(Build.ArtifactStagingDirectory)/$(parameters.OutputName)' zipAfterPublish: false modifyOutputPath: false - + - task: CopyFiles@2 - displayName: 'Copy Angular App $(parameters.name)' + displayName: 'Copy Angular App ${{ parameters.name }}' inputs: SourceFolder: '$(UILocation)dist' Contents: '**' TargetFolder: '$(Build.ArtifactStagingDirectory)/$(parameters.OutputName)/ClientApp/dist' - - + + - task: ArchiveFiles@2 - displayName: Zip $(parameters.name) + displayName: Zip ${{ parameters.name }} inputs: rootFolderOrFile: '$(Build.ArtifactStagingDirectory)/$(parameters.OutputName)' includeRootFolder: false