I am working on a jenkins pipeline, and there's a file that I want to stash and then unstash later in the build in order to use it.
The stash was working fine, until I made some changes in my pipeline, now I am getting 0 files stashed without any info.
stash allowEmpty: true, includes: '${myDir}/target/zippedjars.zip' , name: 'myJar'
This is how I am stashing, and note that it was working fine
and before I am running the stash comment I made sure that the zip exists !