如何使用Azure PowerShell读取和设置DevOps Pipeline变量?

时间:2019-03-12 19:39:29

标签: azure-pipelines azure-powershell

我有一个Azure管道设置,其中定义了MyVariable变量:

MyVariable

如何编写Azure PowerShell内联脚本来读取变量,并在进行一些处理后将其设置为值?

You can write your azure powershell scripts inline here.

1 个答案:

答案 0 :(得分:0)

阅读

变量作为环境变量公开,要读取变量“ TestVar”,您可以执行以下操作:

$myScriptVariable = $env:TESTVAR

请注意,“。”将被替换为“ _”,并且全部为大写。

设置或更新:

要设置或更新变量,您必须使用“ write-host”将以下“命令”写入主机:

Write-Host "##vso[task.setvariable variable=testvar;]testvalue"

还有更多用于不同操作的日志记录命令,我将在此处保留指向文档的链接-> https://github.com/Microsoft/azure-pipelines-tasks/blob/master/docs/authoring/commands.md