I need to copy artifacts from a specific assembly, which is not always the latest. I am looking for a way to copy specfic build artifacts.
Does anyone know if this is possible, and how can I do this?
I use the following snippet in my script pipeline to copy the latest artifacts:
step ([
$class: 'CopyArtifact',
projectName: "myproject",
filter: '_build/*.zip'
]);
source
share