Azure Pipeline use template expression with queued variables
问题 I defined a YAML build-pipeline in azure: variables: test: '${{ variables.Environment }}' pool: vmImage: 'ubuntu-latest' steps: - script: | echo $(test) displayName: 'Show test' I queue that pipeline with the Environment variable defined as 'abc': I expect it to echo abc but instead abc is replaced with nothing - variables.Environment seems to be undefined. Later on I want to load a different Variable Group depending on the Environment variable, which is why I do not echo $(Environment)