From fe8aa31c8ff5aafe340120f870905795f6a35a61 Mon Sep 17 00:00:00 2001 From: Adrien Bourmault Date: Mon, 11 Apr 2022 23:31:20 +0000 Subject: [PATCH] Update .gitlab-ci.yml file --- .gitlab-ci.yml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 824176c..7595257 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -34,6 +34,8 @@ test-job: - rsync fichiers/.[^.]* /var/lib/gsl/domains/chalec.org/files - rsync images/.[^.]* /var/lib/gsl/domains/chalec.org/images - gsl check -F + - find -name '*.gsl' -exec gsl check {} \; + deploy-job: # This job runs in the deploy stage. stage: deploy # It only runs when *both* jobs in the test stage complete successfully. @@ -41,5 +43,5 @@ deploy-job: # This job runs in the deploy stage. - echo "Déploiement..." - cd /home/webmaster/articles - gsl make -F - - gsl make + - find -name '*.gsl' -exec gsl make {} \; - echo "Déploiement terminé."