neutral/Jenkinsfile
Raphix a3e0f25968
All checks were successful
Neutral/pipeline/head This commit looks good
Version 0.1.3 - Ajout de la PipeLine de déploiement automatique
2023-11-02 11:14:26 +01:00

19 lines
519 B
Groovy

pipeline {
agent any
stages {
stage('[Neutral] - Déploiement') {
steps {
script {
echo "[Neutral-Deploy] - Deploy Stage"
sh "ssh raphix@raphix.fr sudo apt update -y"
sh "ssh raphix@raphix.fr sudo apt upgrade -y"
sh "ssh raphix@raphix.fr sudo -S -u gitlab-ci /home/gitlab-ci/neutral_deploy.sh"
}
}
}
}
}