We have a project using Azure Pipeline, relying on azure-pipelines.yml file at the repo\'s root.
When implementing a script step, it is possibl
At the moment, the only way we found for to break a single command on multiple line is using YAML folded style:
- script: >
echo
'hello world'
It is all about replacing | with >.
Notes:
\n at the end of the line would actually introduce a linebreak in the string, but it feels backward compared to the usual approach of automatice linebreak unless an explicit continuation is added).