Suamere
Suamere

Reputation: 6258

Azure Deployment Source - Triggers?

How can I tell the Deployment Source to only run when there have been changes to specific project(s)/file(s)? In other words, something like Triggers.

I know Triggers are different, because that would be the Repo checking the file differences and kicking off a build. Whereas Azure appears to subscribe to my Repo, and the Repo tells my Azure CD when a commit is made, so Azure pulls that solution and builds it.

On a side note: Can I have Azure decide which Configuration to build in? Debug or Release (or otherwise)?

Upvotes: 0

Views: 179

Answers (1)

Zain Rizvi
Zain Rizvi

Reputation: 24636

You can write a custom deployment script to specify the configuration you want to do the deployment in.

That script will be triggered every time you make a change, but you can probably write the script in a way that lets you check to see if the files that you actually care about have been modified.

Upvotes: 1

Related Questions