This repo contains sources for the custom task for Azure DevOps Server (Team Foundation Server) build or release pipelines.
The main goal of this task is to put specified tag to the tasks associated wirh particular build or release.
- run
git clone ...
- cd
AddTagToWorkItems
- run
npm install
- run
tsc
- cd
..
- run
tfx extension create --manifest-globs ./vss-extension.json --rev-version
- you will get
*.vsix
package which you can install in your TFS\ADS
See the documentation for Continuous integration and deployment.
If you need custom functionality in your build/release, it is usually simpler to use the existing script running tasks such as the PowerShell or Bash tasks. Writing a new task may be appropriate if you need deeper integration or reusability in many build definitions
Tasks are simply tool runners. They know how to run MSBuild, VSTest, etc... in a first class way and handle return codes, how to treat std/err out, and how to write timeline records based on expected output. They also get access to credentials to write back to TFS/Azure Pipelines.
For uploading custom tasks to Azure Pipelines use the TFS Cross Platform Command Line utility.
Tasks can also be deployed with an Azure DevOps extension. See this tutorial for how to write a custom task and package it inside an extension.