I'm trying to understand how the option Build tags works inside the Continuous deployment trigger of the release pipeline.
Here I can add Build tags, in my build pipeline is set the following build tags: $(Build.DefinitionName)_$(Build.BuildNumber)
But when I put the same inside the build tags at the Release pipeline. It won't do anything.
The tag's are succesfully added: tag
What I'm trying to archive is that when a build is successful a tag is created and the release pipline is triggered when the tag is the same as the one I set after the build.
Is this how it should work, or do I mix thing up?