| Finally back up and running, would love to say I've finished unpacking, but still lots to do  I've tried a number of different combinations and haven't been able to duplicate your issue. This is the latest incarnation of my script, can you try it out (you might need to update feed name, etc) and let me know what happens? node { bat ''' DEL *.TXT /Q DEL *.upack /Q ECHO Build Tag: %BUILD_TAG% > Example.txt ''' script { deployLocation = "deploy" } uploadProgetPackage artifacts: 'Example.txt', feedName: 'Example', groupName: 'jenkins/pipleline', packageName: 'JenkinsPackage', version: "1.0.${BUILD_NUMBER}" downloadProgetPackage downloadFolder: "${WORKSPACE}/${deployLocation}", downloadFormat: 'pkg', feedName: 'Example', groupName: 'jenkins/pipleline', packageName: 'JenkinsPackage', version: "1.0.${BUILD_NUMBER}" } |