Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在使用托管在我自己的计算机上的本地代理。如果我希望更多人从事同一个项目,有没有办法让每个用户都有一个不同的变量?
就我而言,我想到了 API 调用的密码,当每个用户尝试运行管道时,这些密码对于每个用户来说都是唯一的。
是的,您可以利用变量 Build.QueuedBy 中的构建,这是启动构建的用户
您还可以为密码定义其他变量,由用户键入(无空格):
用户 1:密码 1 用户 2:密码 2
并使用 powershell 您可以动态检索密码:
$password = '$env:'+"$(build.QueuedBy)".replace(" ","")| 调用表达式