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