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