如何在 Azure DevOps Pipelines (YML) 中为任务命名

问题描述 投票:0回答:1

在 pipelines.yml 文件中,使用以下内容:

steps:
# Print buildId
- script: |
    echo "BuildId = $(buildId)"

在 Azure DevOps 中查看构建日志时,我只看到“CmdLine”。

TaskName

有没有办法给stepscript一个在构建日志中可见的可读名称?

azure-devops yaml azure-pipelines
1个回答
20
投票

您只需添加参数

displayName

steps:
- script: 'echo "BuildId = $(Build.BuildId)"' 
  displayName: Test1001

- script: 'echo "BuildId = $(Build.BuildId)"' 
  displayName: Test1002

enter image description here

© www.soinside.com 2019 - 2024. All rights reserved.