diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index ad9ec1b..0980a8c 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -41,5 +41,10 @@ deploy-job: # This job runs in the deploy stage. script: - echo "Déploiement..." - cd /home/webmaster/articles - - find -name '*.gsl' -exec gsl check $(ls {}) && gsl make $(ls {}) \; + - |+ + for postfile in $(ls *.gsl) + do + echo "Construction de $postfile" + gsl check $postfile && gsl make $postfile + done - echo "Déploiement terminé."