Like @Christopher, you can use any of the plugins Publish Overon the Jenkins plugins page to load an artifact into any of
If you want to access the archived zip file from the assembly itself, you can use the following link to access it:
http://<server>/job/${JOB_NAME}/lastSuccessfulBuild/artifact/<artifact name w/folder>
For instance:
- server =
myserver.com - job title =
myproject - artifact =
del/project.zip
Your URL will look like this:
http://myserver.com/job/myproject/lastSuccessfulBuild/artifact/del/project.zip
EDIT: The question has been changed. In any case, this will work to access the artifact of the previous assembly in the current one.
Sagar source
share