Our application uses a single code base backed by client-specific databases. What we are trying to achieve is code deployment using usual code push on the IIS website and DB deployments using SQL Dacpac for Schema Only changes on Azure DevOps.
Here the issue is that some of the changes do not go to all the client's databases simultaneously. What we need is a capability to select which would be the target databases for our current release.
Sometimes we will be releasing changes(Schema Only) to all of them, sometimes to few of them.
One way is to create separate release pipelines for all the databases and release them one by one.
Is there a way we can include checkboxes in the release itself, that every release asks me which all db these changes should go?
Another possible solution is finding a way by which I can call 5-10 release pipelines(Each for different DB release) while creating a release from my Main pipeline and have some kind of checkboxes for the releases using which I can pick which ones to do and which ones to skip for this release.
I need suggestions/best industry practices for this scenario.