Use an SSH username and private key combination

This commit is contained in:
Tom Willemse 2020-10-10 01:37:03 -07:00
parent 5a6f49d286
commit e473acb3c9

13
Jenkinsfile vendored
View file

@ -46,9 +46,16 @@ pipeline {
unstash 'public_html'
unstash 'public_css'
withCredentials([file(credentialsId: 'ryuslash.org-deploy-key-2', variable: 'KEY_FILE'),
file(credentialsId: 'ryuslash-known-hosts', variable: 'KNOWN_HOSTS_FILE')]) {
sh 'rsync -e "ssh -p 4511 -o \\"UserKnownHostsFile $KNOWN_HOSTS_FILE\\" -i $KEY_FILE" -v -c -r --delete public/ "site@ryuslash.org:"'
withCredentials([
sshUserPrivateKey(
credentialsId: 'ryuslash.org-deploy-key-2',
keyFileVariable: 'KEY_FILE',
usernameVariable: 'USERNAME'),
file(
credentialsId: 'ryuslash-known-hosts',
variable: 'KNOWN_HOSTS_FILE')
]) {
sh 'rsync -e "ssh -p 4511 -o \\"UserKnownHostsFile $KNOWN_HOSTS_FILE\\" -i $KEY_FILE" -v -c -r --delete public/ "$USERNAME@ryuslash.org:"'
}
}
}