0
votes

I'm trying to deploy an Angular app to Azure Web App using VSTS Continuous Integration.

My repository doesn't contain any .sln .pdb, it's just a static web site. I have define my build to run npm, gulp, but I don't know how to create an artifact without building the the vs solution. I would also need to create a release task to publish the web site to azure.

Does anybody has a build definition that would work for this deployment?

Thanks

2

2 Answers

1
votes

You can add "Copy and Publish Build Artifacts" task to copy and publish the deployment files to artifact folder that can be used in "Release Management".

And then you can enable "FTP Deployment" for your Azure Web App and use "FTP Uploader" task to publish the files to Azure.

0
votes

I've solved this a few ways: