e27387184c
[release/5.0.1xx] Update dependencies from dotnet/arcade - Updates: - Microsoft.DotNet.Build.Tasks.Installers: from 5.0.0-beta.20427.5 to 5.0.0-beta.20431.1 - Microsoft.DotNet.Arcade.Sdk: from 5.0.0-beta.20427.5 to 5.0.0-beta.20431.1
22 lines
572 B
YAML
22 lines
572 B
YAML
parameters:
|
|
StageLabel: ''
|
|
JobLabel: ''
|
|
|
|
steps:
|
|
- task: CopyFiles@2
|
|
displayName: Copy Logs to $(Build.StagingDirectory)\BuildLogs
|
|
inputs:
|
|
SourceFolder: $(Build.SourcesDirectory)\artifacts
|
|
Contents: |
|
|
**/*.log
|
|
**/*.binlog
|
|
TargetFolder: '$(Build.StagingDirectory)\BuildLogs'
|
|
continueOnError: true
|
|
condition: succeededOrFailed()
|
|
|
|
- task: PublishPipelineArtifact@1
|
|
displayName: Publish BuildLogs
|
|
inputs:
|
|
targetPath: '$(Build.StagingDirectory)\BuildLogs'
|
|
artifactName: ${{ parameters.JobLabel }}
|
|
condition: succeededOrFailed()
|