skip to Main Content

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

2

Answers


  1. 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.

    Login or Signup to reply.
  2. 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.

    Login or Signup to reply.
Please signup or login to give your own answer.
Back To Top
Search