I would like to set a label on Azure Devops task, but not via the built-in label option as you can see on the attached photo.
How can I do it?
Thanks
CodePudding user response:
The tf.exe command is available on the build agent. Simply use a command-line script in your pipeline with the appropriate tf command.
- task: Cmdline@2
inputs:
script: 'tf label goodbuild docs /recursive'

