add deploy stage to Jenkinsfile
Gitea/resume/pipeline/head This commit looks good Details

This commit is contained in:
andrzej 2024-05-26 18:01:14 +02:00
parent ea50ae89fb
commit 278474131a
1 changed files with 4 additions and 3 deletions

5
Jenkinsfile vendored
View File

@ -2,10 +2,11 @@ pipeline {
agent any
stages {
stage('Do nothing') {
stage('deploy'){
steps{
sh '/bin/true'
sshPublisher(publishers: [sshPublisherDesc(configName: 'Demos', transfers: [sshTransfer(cleanRemote: false, excludes: '', execCommand: '', execTimeout: 120000, flatten: false, makeEmptyDirs: false, noDefaultExcludes: false, patternSeparator: '[, ]+', remoteDirectory: 'ssh-uploads/resume', remoteDirectorySDF: false, removePrefix: '', sourceFiles: '*')], usePromotionTimestamp: false, useWorkspaceInPromotion: false, verbose: false)])
}
}
}
}