psniquiz/Jenkinsfile
mayekkuzu 02574ab33a
Some checks failed
Job Folder/Gitea Instance/psniquiz/pipeline/head There was a failure building this commit
Updated Jenkinsfile
2024-09-26 20:19:40 +03:00

19 lines
585 B
Groovy

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