steps.publish 定义

publish 关键字将文件或文件夹发布为其他作业和管道可以使用的管道项目。

publish 关键字将文件或文件夹发布为其他作业和管道可以使用的管道项目。

重要

Azure DevOps Services 仅支持 publish 步骤。 如果在 Azure DevOps Server 上使用它,将收到类似于 Pipeline Artifact Task is not supported in on-premises. Please use Build Artifact Task instead. 使用 发布生成项目(如果使用 Azure DevOps Server)的错误消息。

steps:
- publish: string # Required as first property. The publish step is a shortcut for the PublishPipelineArtifact@1 task. The task publishes (uploads) a file or folder as a pipeline artifact that other jobs and pipelines can consume.
  artifact: string # Artifact name.
  condition: string # Evaluate this condition expression to determine whether to run this task.
  continueOnError: boolean # Continue running even on failure?
  displayName: string # Human-readable name for the task.
  target: string | target # Environment in which to run this task.
  enabled: boolean # Run this task when the job runs?
  env: # Variables to map into the process's environment.
    string: string # Name/value pairs
  name: string # ID of the step.
  timeoutInMinutes: string # Time to wait for this task to complete before the server kills it.
  retryCountOnTaskFailure: string # Number of retries if the task fails.
steps:
- publish: string # Required as first property. The publish step is a shortcut for the PublishPipelineArtifact@1 task. The task publishes (uploads) a file or folder as a pipeline artifact that other jobs and pipelines can consume.
  artifact: string # Artifact name.
  condition: string # Evaluate this condition expression to determine whether to run this task.
  continueOnError: boolean # Continue running even on failure?
  displayName: string # Human-readable name for the task.
  target: string | target # Environment in which to run this task.
  enabled: boolean # Run this task when the job runs?
  env: # Variables to map into the process's environment.
    string: string # Name/value pairs
  name: string # ID of the step.
  timeoutInMinutes: string # Time to wait for this task to complete before the server kills it.

引用此定义的定义:步骤

性能

publish 字符串。 必需为第一个属性。
发布步骤是PublishPipelineArtifact@1任务的快捷方式。 任务将文件或文件夹发布为管道项目,其他作业和管道可以使用。

artifact 字符串。
项目名称。

condition 字符串。
计算此条件表达式以确定是否运行此任务。

continueOnError 布尔
即使在失败时继续运行?

displayName 字符串。
任务的人可读名称。

target 目标
运行此任务的环境。

enabled 布尔
作业运行时运行此任务?

env 字符串字典。
变量以映射到进程的环境。

name 字符串。
步骤的 ID。 可接受的值:[-_A-Za-z0-9]*。

timeoutInMinutes 字符串。
等待此任务在服务器终止之前完成的时间。

注释

管道可配置为作业级别超时。 如果作业级别超时间隔在步骤完成之前已过,则运行作业(包括步骤)将终止,即使该步骤配置了更长的 timeoutInMinutes 间隔。 有关详细信息,请参阅 超时

retryCountOnTaskFailure 字符串。
如果任务失败, 重试次数。

注解

publish 关键字是 发布管道项目任务的快捷方式。

重要

Azure DevOps Services 仅支持 publish 步骤。 如果在 Azure DevOps Server 上使用它,将收到类似于 Pipeline Artifact Task is not supported in on-premises. Please use Build Artifact Task instead. 使用 发布生成项目(如果使用 Azure DevOps Server)的错误消息。

详细了解 发布项目

例子

steps:
- publish: $(Build.SourcesDirectory)/build
  artifact: WebApp
  displayName: Publish artifact WebApp

另请参阅