You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
As it stands, is it possible to get the generated (yaml) files to use separate individual "steps"?
If so, any example of how this can be done?
If not, would be a good to do so?
i.e. Currently the output looks as mentioned below:
...
jobs:
- job: DefaultJob
steps:
- task: CmdLine@2
inputs:
script: './build.cmd DefaultTask --skip' -- ALL happening in 1 line....
Can this currently output something on the lines of this:
...
jobs:
- job: DefaultJob
steps:
- task: CmdLine@2
inputs:
script: './build.cmd DefaultTask'
- task: CmdLine@2
inputs:
script: './build.cmd Task2'
- task: CmdLine@2
inputs:
script: './build.cmd Task3'
reacted with thumbs up emoji reacted with thumbs down emoji reacted with laugh emoji reacted with hooray emoji reacted with confused emoji reacted with heart emoji reacted with rocket emoji reacted with eyes emoji
-
As it stands, is it possible to get the generated (yaml) files to use separate individual "steps"?
If so, any example of how this can be done?
If not, would be a good to do so?
i.e. Currently the output looks as mentioned below:
...
jobs:
- job: DefaultJob
steps:
- task: CmdLine@2
inputs:
script: './build.cmd DefaultTask --skip' -- ALL happening in 1 line....
Can this currently output something on the lines of this:
...
jobs:
- job: DefaultJob
steps:
- task: CmdLine@2
inputs:
script: './build.cmd DefaultTask'
- task: CmdLine@2
inputs:
script: './build.cmd Task2'
- task: CmdLine@2
inputs:
script: './build.cmd Task3'
Beta Was this translation helpful? Give feedback.
All reactions