revert to previous stateq

to see if jenkins build works now
This commit is contained in:
andrzej 2024-05-25 11:49:56 +02:00
parent 2a8f35c075
commit 079246b141
1 changed files with 2 additions and 1 deletions

3
Jenkinsfile vendored
View File

@ -10,7 +10,8 @@ pipeline {
} }
stage('deploy'){ stage('deploy'){
steps{ steps{
sshPublisher(publishers: [sshPublisherDesc(configName: 'Demos', transfers: [sshTransfer(cleanRemote: false, excludes: '', execCommand: '', execTimeout: 120000, flatten: false, makeEmptyDirs: false, noDefaultExcludes: false, patternSeparator: '[, ]+', remoteDirectory: '/home/jenkins/ssh-uploads/calculator', remoteDirectorySDF: false, removePrefix: '', sourceFiles: 'build')], usePromotionTimestamp: false, useWorkspaceInPromotion: false, verbose: false)]) sshPublisher(publishers: [sshPublisherDesc(configName: 'Demos', transfers: [sshTransfer(cleanRemote: false, excludes: '', execCommand: '', execTimeout: 120000, flatten: false, makeEmptyDirs: false, noDefaultExcludes: false, patternSeparator: '[, ]+', remoteDirectory: '/home/jenkins/ssh-uploads/calculator', remoteDirectorySDF: false, removePrefix: '', sourceFiles: 'dist')], usePromotionTimestamp: false, useWorkspaceInPromotion: false, verbose: false)])
}
} }
} }
} }