Reputation: 199
I'm working on creating a build pipeline that to compile an ApiWebApp and deploy it to Azure from Visual Studio Online. My build flow is:
My questions are:
Upvotes: 2
Views: 624
Reputation: 5010
Yes, it is reasonable, and you have the right build steps in your build definition.
You need to have a check on this blog, it describes the details on how to deploy an Azure Web Site using the new build system in Visual Studio Online.
Here are some important steps I would like to highlight from there:
Upvotes: 1
Reputation: 5695
Yes it is reasonable.
Here are the steps:
Step 1: Create a team project
Step 2: Check in a project to source control
Step 3: Connect the project to Azure (In azure portal)
Step 4: Trigger a rebuild and redeploy your project
Here is a complete steps on how you can do it:
https://azure.microsoft.com/en-us/documentation/articles/cloud-services-continuous-delivery-use-vso/
In the package text box you can enter: ($build.stagingDirectory)YourProjectName.zip
Upvotes: 0