How can I trigger a deployment using the azure devops node API? I do it manually as follows:
- Go to the release page
- Click on the latest release
- Choose the env I want to deploy to (listed in the release stages)
- Click deploy
I am able to get the release programmatically as follows:
const releaseApi: ra.IReleaseApi = await connection.getReleaseApi();
const releases: Release[] = await releaseApi.getReleases("b32aa71e-8ed2-41b2-9d77-5bc261222004", 34609, undefined);
What do I do next? I tried playing around with the releaseDefinition
and the releaseApi.updateRelease()
API unsuccessfully.
You will have to call request release with releaseStartMetadata object and Poject ID or project name This would be equivalent to the rest call - https://learn.microsoft.com/en-us/rest/api/azure/devops/release/releases/create?view=azure-devops-rest-6.0