Is it possible to have a single release pipeline with multiple artifacts that will trigger separate stages conditionally.
Example:
(Build Artifact 1)
Build tags of Web
(Build Artifact 2)
Build tags of Identity
When i setup my release pipeline I create one pipeline and add the
(Build Artifact 1)
-> Web Stage
(Build Artifact 2)
-> Identity Stage
both of those artifacts are set trigger a release automatically and set to After Release
The problem I have is that when I queue the build for (Build Artifact 2)
both stages will deploy. And i only want Identity Stage
to deploy and visa versa.
The reason i want everything in one pipeline is because then all my artifacts is contained in one pipeline, I know i can do this if i create separate pipelines.