DEV Community

Discussion on: Deploying ASP.NET Core Applications from Bitbucket to Azure

Collapse
 
dkarger profile image
Dan Karger

Good article but I think you're underestimating what you can do with this.

Firstly you can include staging / test deployments just by a tweak to your git branching strategy. IE merge into master branch to deploy to test / staging and merge into release branch to deploy to production.

Also you can run unit tests on your deployment with just a couple of tweaks to the default deployment as described here

Collapse
 
t4rzsan profile image
Jakob Christensen

Different branches? Yes, of course. Good thinking.

I am not familiar with Kudu so thank you for the link.