Reputation: 23
Can Azure Release Pipelines use the Environment feature? I have been looking but all examples of using Environments are YAML and pipeline Deployment tasks.
Upvotes: 1
Views: 2926
Reputation: 19471
Can Azure Release Pipelines use the Environment feature?
The answer is No, the environment feature cannot be used in the release pipeline. This is stated in the official document:
Upvotes: 1
Reputation: 40849
No, you can't. Environments are designed for multi stage Yaml pipelines. For release pipelines you have Deployment groups
. Please check it here for more details.
Upvotes: 2