我在 Azure Devops 上有一个标准的 .NET Core (Ubuntu) 管道,在我的测试项目中,我使用环境变量。在我的管道中,我已经像这样定义了我的组变量
variables:
- group: MyApiVariables
每当我为我的项目运行测试时
- task: DotNetCoreCLI@2
displayName: "Testing Application"
inputs:
command: test
projects: '**/*Tests/*.csproj'
arguments: '--configuration $(buildConfiguration)'
实际的环境变量没有传入。它们是空白的。
我缺少什么来运行它?我什至在编辑管道页面中也定义了变量,但没有运气
- task: Bash@3
inputs:
targetType: 'inline'
script: echo $AppConfigEndpoint
env:
AppConfigEndpoint: $(AppConfigEndpoint)
ApiConfigSection: $(ApiConfigSection)
谢谢!