Reputation: 314
I have 2 CI builds. One is responsible for building an WebAPI project, the second builds a node application. Both builds produce an artifact.
I want to encapsulate both of these builds into a single continuous deployment release.
From what I can see, you can only add one release trigger that fires when one (the primary) artifact changes.
Is there a way to add multiple triggers to the release definition? So when either build is run and the artifacts are produced, that single release is deployed.
Upvotes: 2
Views: 2291
Reputation: 4342
Build definitions currently only support a single trigger.
A possible workaround for the time being might be to trigger the release definition from a build task in either build definition through Visual Studio Team Services REST API.
Upvotes: 1