0
votes

I created an azure build pipe line and published the artifacts. While releasing I want to know the artifact is created or not. How to check the availability of Published Pipeline Artifacts in azure pipeline release

1

1 Answers

1
votes

How to check availability of Published Pipeline Artifacts in azure pipeline release

Since you have published the artifacts, you do not need to check the availability of Published Pipeline Artifacts in azure pipeline release on purpose.

That because the built-in Download Artifacts will check and download the Pipeline Artifacts in azure pipeline when your release source type is Build:

enter image description here

enter image description here

Besides, if you want to manually check the the availability of Published Pipeline Artifacts in azure pipeline release, you could use the Download Build Artifacts task to download the artifact to check it.

Hope this helps.