Update .gitlab-ci.yml file

This commit is contained in:
Adrien Bourmault 2022-04-11 23:46:29 +00:00
parent 7a43bc37e9
commit 1328fb7beb
1 changed files with 6 additions and 1 deletions

View File

@ -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é."