Hello,I currently have a pipeline which zips results of a build stage. I have a README.md file which i will like to add in my zip file when uploading to nexus. The file is included during checkout. how do I add this during the zip stage? I tried the approach below but it doesn't add the readme file in my final output folderzip dir: 'directroy/to/my/folder', glob:'', zipFile: 'folder.zip' + 'path/to/my/readmeFile/README.md'Can someone tell me the correct way of doing this?Thanks