How can we help you today? How can we help you today?
danielpottenger

Activity overview

Latest activity by danielpottenger

Hey Chris, The best way would likely be to define your own YAML pipeline, which may be the easiest way to do what you need. With Azure pipelines, you can define a YAML file that can loop over a set of parameters and feed those in to a specific task. As an example, I've defined a release task, deploy-from-package.yaml. You can set up multiple different parameters and feed them in, if the server, and authentication method changes, though it may be more complex. To use the above task, you need to define your own pipeline using YAML. When creating your pipeline, you have the option to use YAML, at which point you can write something similar to the above (if you need help writing the YAML for some of the build steps, you can create it using our tasks within Azure, and then use the View YAML button within Azure DevOps, and then copy and paste it across). [image] [image] It isn't ideal to keep your username and password within the YAML, for obvious reasons, but you should be able to use service connections to specify the same thing, which should help to obfuscate the credentials. From the above, you can see that my pipeline creates the following on run: [image] [image] [image] [image] Hope this helps! Dan / comments
Hey Chris,The best way would likely be to define your own YAML pipeline, which may be the easiest way to do what you need.With Azure pipelines, you can define a YAML file that can loop over a set o...
0 votes