3

我坚持在 azure devops 管道中使用构建变量。

我尝试实现的目标:使用当前时间戳创建变量并使用此变量设置构建名称和工件版本(用于可追溯性)。

在我当前的配置中,powershell 脚本已成功执行,但在 npm 步骤中变量 foo 为空(请参阅下面的 yml 代码)。

variables:
  system.debug: true

name: $(TeamProject)_$(Build.DefinitionName)_$(SourceBranchName)_$(Date:yyyyMMdd)-$(Hours)$(Minutes)$(Seconds)

[...]

steps:
- task: PowerShell@2
  inputs:
    targetType: 'inline'
    script: 'Write-Host "Setting up the date time for build variable"
      $date=$(Get-Date -format yyyyMMdd-Hmmss)
      Write-Host "##vso[task.setvariable variable=foo]$date"'

- task: Npm@1
  inputs:
    command: 'custom'
    customCommand: '--no-git-tag-version version prerelease --preid=dev-$(foo)'
  displayName: 'npm version prerelease'

我的问题:为什么在 npm 步骤中变量 foo(由 powershell 引入)为空?有没有办法使用自我引入的变量 foo 设置构建名称(为构建名称和工件版本使用相同的时间戳)?

4

1 回答 1

5

您使用的 YAML 管道格式错误。您可以使用以下代码段:

steps:
- powershell: |
   Write-Host "Setting up the date time for build variable"
   $date=$(Get-Date -format yyyyMMdd-Hmmss)
   Write-Host "##vso[task.setvariable variable=foo]$date"
  displayName: 'PowerShell Script'

那么这个 foo 变量应该用 powershell 成功引入。您将看到它在 follow npm 任务中展开。

在此处输入图像描述

于 2020-08-18T09:54:33.947 回答