monkeyhandz
monkeyhandz

Reputation: 23

Use Environments with Azure Release Pipeline

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

Answers (2)

Hugh Lin
Hugh Lin

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:

enter image description here

Upvotes: 1

Krzysztof Madej
Krzysztof Madej

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

Related Questions