2
votes

Azure DevOps Pipeline : How to release Project binary file into Azure.

How can I deploy project binary files into server using Azure Pipeline, don't want to release project full source code?

1

1 Answers

0
votes

You would do something like this.

  1. create a deployment group
  2. create a build, configure it
  3. create a release, configure it (get artifacts from build, deploy to deployment group)

These are the steps you need to perform. link has more information on this matter