0

I am trying to implement the CI/CD process for my ASP.NET website. I have the build definition and release definition set up like this: build definition release definition

But when I queue a new build, the release task complained "Error: No package found with specified pattern: D:\a\r1\a***.zip". I think this is because the zip file path in release definition is wrong. What should I do to make the build task and release task play together?

NJUHOBBY
  • 850
  • 3
  • 10
  • 30
  • see if this discussion helps - https://stackoverflow.com/questions/44803475/no-packages-found-with-specified-pattern – Sheethal J S Apr 07 '18 at 06:24

1 Answers1

2

Your Archive task is after your Publish Artifacts task, so the zip file isn't included in the artifacts published by your build.

Daniel Mann
  • 57,011
  • 13
  • 100
  • 120