How to get the variable value in TFS/AzureDevOps from Build to Release Pipeline?

The is no official way to pass variables from Build to Release. The only way to accomplish this is to store the values in a file (json, xml, yaml, what have you) and attach that as a Build Artifact. That way you can read the file in the release and set the variable again. Martin … Read more