From b1ff588c229d4aafc4668edc90943ea524213569 Mon Sep 17 00:00:00 2001 From: Raphix Date: Sun, 19 Mar 2023 12:05:56 +0100 Subject: [PATCH] Jenkins Test #10 --- Jenkinsfile | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/Jenkinsfile b/Jenkinsfile index 7fe0938..dfddfc4 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -5,21 +5,21 @@ pipeline { stage('Install Neutral') { steps { echo "[Neutral-Deploy] - Installation Stage" - sh "ssh raphix@raphix.fr 'pwd'" + sh "ssh -i /home/raphix/.ssh/id_rsa raphix@raphix.fr 'pwd'" } } stage('Test Neutral') { steps { - echo "[Neutral-Deploy] - Test Stage" - sh "ssh raphix@raphix.fr 'pwd'" + echo "[Neutral-Deploy] - Test Stage" + sh "ssh -i /home/raphix/.ssh/id_rsa raphix@raphix.fr 'pwd'" } } stage('Deploy Neutral') { steps { - echo "[Neutral-Deploy] - Deploy Stage" - sh "ssh raphix@raphix.fr 'pwd'" + echo "[Neutral-Deploy] - Deploy Stage" + sh "ssh -i /home/raphix/.ssh/id_rsa raphix@raphix.fr 'pwd'" } } }