作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我正在尝试在 PowerShell 中设置 Azure 管道变量值。我创建了一个变量 winversion
在 Azure 管道中。现在,在 PowerShell 任务中,我想为 winversion
分配一些值。多变的。
我的简单问题是如何在运行时更改 Azure PipeLine 变量的值?
Write-Host "Main value is $winversion"
$env:WINVERSION="abhinav";
Write-Host "Modified value is $env:WINVERSION"
Write-Host "Main value is $(winversion)"
第一行打印:原始值为 123
param(
[string]$winVersion
)
$body = "{ 'definition' : { 'id' :85}
}"
$valueName="Winver"
$definitionId=85
$User=""
$Password=""
$base64authinfo = [Convert]::ToBase64String([Text.Encoding]::ASCII.GetBytes(("{0}:{1}" -f $User, $Password)))
$Uri = "https://Muac.visualstudio.com/OSGCXE/_apis/release/releases?api-version=2.0"
$urlDef = "https://Muac.visualstudio.com/OSGCXE/_apis/release/definitions/" + $definitionId + "?api-version=2.0"
$definition = Invoke-RestMethod -Headers @{Authorization=("Basic {0}" -f $base64authInfo)} -Method Get -Uri $urlDef
#Write-Host $definition
$definition.variables.$valueName.Value = "$winVersion"
$definitionJson = $definition | ConvertTo-Json -Depth 50 -Compress
#Write-Host (ConvertTo-Json $definition -Depth 100)
$update=Invoke-RestMethod -Headers @{Authorization=("Basic {0}" -f $base64authInfo)} -Method Put -Uri $urlDef -Body $definitionJson -ContentType "application/json"
#Write-Host "$update"
#$buildresponse = Invoke-RestMethod -Method Post -ContentType application/json -Uri $Uri -Headers @{Authorization=("Basic {0}" -f $base64authinfo)} -Body $body
#write-Host $buildresponse.status
最佳答案
How To set azure pipeline variable from PowerShell
$winversion
在 powershell 脚本中,但变量设置为
testvar
在管道变量中。
"##vso[task.setvariable variable=testvar;]testvalue"
要覆盖它,覆盖值仅适用于当前构建管道。当您使用
$(winversion)
要获取值,它仍然会从管道变量值中提取值。要获取当前值,您需要使用
$env:WINVERSION
.
I want when I change the value of winversion from "123" to "abhinav" so it actually changes the pipeline variable value to abhinav.
PUT https://dev.azure.com/{organization}/{project}/_apis/build/definitions/{definitionId}?api-version=5.0
关于continuous-integration - 如何从 PowerShell 设置 Azure 管道变量,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/55472792/
我是一名优秀的程序员,十分优秀!