Home > database >  Azure Pipeline - Zip deployment
Azure Pipeline - Zip deployment

Time:07-16

I have just begun in Azure DevOps. I made the CI/CD pipeline for our dot net project. CI successfully done and generated the artifact, but in CD getting failed always, configured deployment type = zip;

I am completely new for Azure, so anyone look at this issue earlier and sorted out. Pls share your experience.

enter image description here

enter image description here

CodePudding user response:

From the steps on the screenshot you shared, I do not see any step to archive the artifact files as a ZIP file.

Before the deployment, you need to use the Archive Files task to archive all the required artifact files as a ZIP file. Then execute the deployment with this ZIP file.

CodePudding user response:

Your array before red line says "There is not enough space on the disk". Please check your disk - probably storing or replacing the zip is not possible because of missing space.

  • Related