I use a self-hosted build agent for my Azure DevOps Git rep so the build tree lives on my local build machine in a local folder like c:\agent\work\24
.
I recently created a permanent branch from my master for release. I'd like to be able to build either branch of the pipeline independently and have both build results/work-folders stored on the local build machine. But unfortunately, Azure wants to use the same subfolder for both builds
Is there any way to make the new branch version of the pipeline use a different subfolder (e.g. c:\agent\work\25
)? I'd like to avoid editing any existing pipeline YAML (unless there's some line I can put in there to just change the subfolder, of course)