共用方式為


steps.publish 定義

publish 關鍵詞會將檔案或資料夾發佈為其他作業和管線可以使用的管線成品。

publish 關鍵詞會將檔案或資料夾發佈為其他作業和管線可以使用的管線成品。

這很重要

Azure DevOps Services 僅支援 publish 步驟。 如果您在 Azure DevOps Server 上使用,如果您使用的是 Azure DevOps Server,您會收到類似 Pipeline Artifact Task is not supported in on-premises. Please use Build Artifact Task instead. 使用 發佈組建成品 的錯誤訊息。

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 字串。
步驟的標識碼。 可接受的值:[-_A-Za-z0-9]*。

timeoutInMinutes 字串。
等候此工作在伺服器終止之前完成的時間。

備註

管線可能會設定作業層級逾時。 如果作業層級逾時間隔在步驟完成之前經過,即使步驟設定較長的 timeoutInMinutes 間隔,仍會終止執行中的作業(包括您的步驟)。 如需詳細資訊,請參閱 逾時

retryCountOnTaskFailure 字串。
如果工作失敗,重試次數。

備註

publish 關鍵詞是 發佈管線成品工作的快捷方式,

這很重要

Azure DevOps Services 僅支援 publish 步驟。 如果您在 Azure DevOps Server 上使用,如果您使用的是 Azure DevOps Server,您會收到類似 Pipeline Artifact Task is not supported in on-premises. Please use Build Artifact Task instead. 使用 發佈組建成品 的錯誤訊息。

深入瞭解 發行成品。

範例

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

另請參閱