| Hi Mez! Thank you very much for the AppCenter Jenkins plugin. Just like Alexey the project that I'm working on generates dynamic file names. I tried below methods to publish to AppCenter and I'm getting error. Method 1: [Declare a variable and and call it in the path] stage('Publish to App Center') sh ''' filename=$(ls -lt somepath/*.apk |cut -d'/' -f 7) echo $filename > filename ''' apkname = readFile 'filename' appCenter apiToken: 'sometoken', appName: 'some-appname', distributionGroups: 'some-group', notifyTesters: true, ownerName: 'some-owner-name', pathToApp: 'somepath/${apkname}', releaseNotes: 'notes' Method 2: [Using shell type wild card in the path] stage('Publish to App Center') appCenter apiToken: 'sometoken', appName: 'some-appname', distributionGroups: 'some-group', notifyTesters: true, ownerName: 'some-owner-name', pathToApp: 'some//path/.apk', releaseNotes: 'notes' I get below error for both: Caused by: java.util.concurrent.ExecutionException: io.jenkins.plugins.appcenter.AppCenterException: File not found: Please suggest any way to come around this one. Regards, Arun |