I have a build definition with the following build steps in the following order:
- NuGet Installer
- Npm
- Gulp
- Visual Studio Build
- Azure Web App Deployment
In step 3, Gulp generates a dist
folder in my application root. The dist
folder contains some subfolders and files. The subfolders themselves can contain other subfolders and files.
In step 4, the Visual Studio Build step creates a <ProjectName>.zip
zip file when completed.
The Azure Web App Deployment step then deploys that zip file to my Azure Web App.
How do I include the dist
folder in <ProjectName>.zip
?
I tried doing two Azure Web App Deployments deploying one zip file at a time in the same build definition but the second Azure Web App Deployment build step wipes whatever was deployed by the first one. Is there a way to tell the second Azure Web App Deployment step to "append" to whatever was deployed by the first Azure Web App Deployment step?