我试图在部署管道时将 displayName 添加到我的 yaml 代码中,但是当我运行管道时,displayName 不会出现。
我期待显示名称“PreDeployment”出现:
- task: AzurePowerShell@5
inputs:
displayName: PreDeployment
azureSubscription: 'NewConnectionName'
ScriptType: 'FilePath'
ScriptPath: '$(System.DefaultWorkingDirectory)/caplogic-warehouse-dev-df/PrePostDeploymentScript.ps1'
ScriptArguments: '-armTemplate "$(System.DefaultWorkingDirectory)/caplogic-warehouse-dev-df/ARMTemplateForFactory.json" -ResourceGroupName $(ResourceGroup) -DataFactoryName $(DataFactory) -predeployment $true -deleteDeployment $false'
azurePowerShellVersion: 'LatestVersion'
“displayName”是一个“通用”属性,必须按如下方式使用:
您可以参考此 MS 文档以获取更多信息:steps.task 定义