0

is there a way that we can Consume build artifact that is generated in the CI pipeline in the subsequent task of CI pipeline ( I want to refer the artifact path in the Azure File Copy task AND in the PowerShell task).

Raghu Hoskote
  • 117
  • 2
  • 14

1 Answers1

1

You can refer the path to publish from your publish artifacts task. The artifacts of the pipeline are generated from the files in this folder.

enter image description here

You can also add a Download build artifacts task in your pipeline. Then, refer the destination directory in the subsequent tasks.

enter image description here

Walter
  • 2,640
  • 1
  • 5
  • 11