Version 0.1.3 - Ajout de la PipeLine de déploiement automatique
All checks were successful
Neutral/pipeline/head This commit looks good

This commit is contained in:
CICD - Pipeline 2023-11-02 11:14:26 +01:00
parent 132dae4809
commit a3e0f25968
2 changed files with 20 additions and 1 deletions

19
Jenkinsfile vendored Normal file
View File

@ -0,0 +1,19 @@
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"
}
}
}
}
}

View File

@ -1,6 +1,6 @@
{
"name": "neutral",
"version": "0.1.2",
"version": "0.1.3",
"description": "Panel d'administration de Raphix",
"main": "index.js",
"scripts": {