gpt4 book ai didi

powershell - 如何通过内联 PowerShell 命令设置 Azure Devops 管道变量?

转载 作者:行者123 更新时间:2023-12-02 00:06:50 24 4
gpt4 key购买 nike

我有一个 Azure Devops 构建 YAML 文件,其中包含以下任务:

  - task: PowerShell@2
displayName: 'Set coverage variable'
inputs:
targetType: 'inline'
script: Write-Host "##vso[task.setvariable variable=coverage]Get-Content .\coverage\lcov-report\summary.txt"

我希望此任务将变量 coverage 设置为 summary.txt 内容的值。但是,在以下任务中访问变量时,我发现该变量实际上是字符串 Get-Content .\coverage\lcov-report\summary.txt

文档中似乎没有任何示例说明如何实现这一点。这只是脚本的限制吗?我是否必须将 Get-Content 命令设置为一个变量然后访问该变量?

最佳答案

请在 . 之后使用 $()。

例子:

##vso[task.setvariable variable=coverage]$(Get-Content .\coverage\lcov-report\summary.txt)"

关于powershell - 如何通过内联 PowerShell 命令设置 Azure Devops 管道变量?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/60347038/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com