From cb771cd95011c22426af76a5dbf2618f94b196fc Mon Sep 17 00:00:00 2001 From: Tom Willemse Date: Sat, 10 Oct 2020 00:08:14 -0700 Subject: [PATCH] Fix credentials used --- Jenkinsfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Jenkinsfile b/Jenkinsfile index 3254083..98fbd62 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -46,7 +46,7 @@ pipeline { unstash 'public_html' unstash 'public_css' - withCredentials([file(credentialsId: 'ryuslash.org-deploy-key', variable: 'KEY_FILE')]) { + withCredentials([file(credentialsId: 'ryuslash.org-deploy-key-2', variable: 'KEY_FILE')]) { sh 'rsync -e "ssh -p 4511 -i $KEY_FILE" -v -c -r --delete public/ "site@ryuslash.org:public_html/"' } }