0

有没有办法从 PowerShell 脚本发布 Pipeline Artefact ?

我想避免为发布文件创建额外的管道任务。

代替:

      - task: PublishPipelineArtifact@1
        displayName: 'publish azuredeploy.parameters.json'
        inputs:
          targetPath: $(System.DefaultWorkingDirectory)/work
          artifactName: azuredeploy parameters

我宁愿做这样的事情:

      - task: PowerShell@2
        displayName: 'replace ARM parameters'
        inputs:
          targetType: inline
          pwsh: true
          script: |
              # input
              $manifest = ReadObject "work/manifest.json"

              # process
              ReplaceArmTemplateParameters $manifest.modules

              # output
              PublishPipelineArtefact -targetPath "work/manifest.json" -artefactName "azuredeploy-parameters"


也许构建代理提供了一个可以在PowerShell@2任务中使用的 API,例如:Agent.Plugins.PipelineArtifact.PublishPipelineArtifactTask::PipelineArtifactTaskPluginBaseV1

有任何想法吗?

(ps:这个问题好像有点过时了)

4

1 回答 1

2

如果您希望它成为脚本的一部分,您可以使用Logging Commands

  1. ##vso[artifact.associate]artifact location- 创建工件链接,工件位置要求为文件容器路径、VC 路径或 UNC 共享路径。

  2. ##vso[artifact.upload]local file path- 将本地文件上传到文件容器文件夹中,如果提供了工件名称,则创建工件。

您将其与 一起使用Write-Host,例如:

Write-Host "##vso[artifact.upload containerfolder=test;artifactname=drop;]c:\test.zip"

另一种选择是不使用PublishPipelineArtifact@1任务,有更简单和更短的语法

- publish: $(System.DefaultWorkingDirectory)/bin/WebApp
  artifact: WebApp
于 2020-07-14T19:56:09.973 回答