在 azure devops 管道中使用时间戳变量
Use timestamp variable in azure devops pipeline
我一直坚持在 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 设置构建名称(为构建名称和工件版本使用相同的时间戳)?
您使用的 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 task 中展开。
我一直坚持在 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 设置构建名称(为构建名称和工件版本使用相同的时间戳)?
您使用的 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 task 中展开。