psniquiz/Jenkinsfile
mayekkuzu 69e8b432a2
All checks were successful
Jobs Folder/Gitea Instance/pipeline/head This commit looks good
Update Jenkinsfile
2024-09-26 21:27:17 +03:00

14 lines
458 B
Groovy

pipeline {
agent any
stages {
stage('Copy Files on Server') {
steps {
withCredentials([usernamePassword(credentialsId: 'QuizServerCreds', usernameVariable: 'USERNAME', passwordVariable: 'SERVER_IP')]) {
sh 'ssh-keyscan ${SERVER_IP} > ~/.ssh/known_hosts'
sh 'rsync -avzhe ssh * ${USERNAME}@${SERVER_IP}:/var/www/public_html'
}
}
}
}
}