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'" } } }