Naveen DINUSHKA
Naveen DINUSHKA

Reputation: 1627

How to archive new build files in jenkins -pipeline script in groovy ReactJS

trying to archive all the files into a zip file that is formed in the workspace in jenkins pipeline script. I tried using this

archiveArtifacts 'C:\Program Files (x86)\Jenkins\jobs\pipeline CI_MS\workspace'

but error was shown as "file not found"

Thanks for any help

Upvotes: 0

Views: 2278

Answers (1)

Rob Hales
Rob Hales

Reputation: 5319

Do you really want to archive everything in the entire workspace? Hardcoding the path like that is a bad idea. The workspace moves, and if you are using a more recent version of Jenkins (that wasn't upgraded from an old version), you are probably not even looking in the right space.

Use this:

archiveArtifacts "${WORKSPACE}"

Add to the end of the path if you want to archive files in subdirectories.

Upvotes: 2

Related Questions