815a3d8838
Some checks failed
platform/bro-js/jenkins-scripts/pipeline/head There was a failure building this commit
6 lines
569 B
Groovy
6 lines
569 B
Groovy
def deploy(String versionName, String staticFolderName, String sshConfigName = 'bro-js-static') {
|
|
sshPublisher(publishers: [sshPublisherDesc(configName: sshConfigName, transfers: [sshTransfer(cleanRemote: false, excludes: '', execCommand: '', execTimeout: 120000, flatten: false, makeEmptyDirs: false, noDefaultExcludes: false, patternSeparator: '[, ]+', remoteDirectory: staticFolderName, remoteDirectorySDF: false, removePrefix: '', sourceFiles: "${versionName}/**")], usePromotionTimestamp: false, useWorkspaceInPromotion: false, verbose: true)])
|
|
}
|
|
|
|
return this
|