Update .gitlab-ci.yml file
This commit is contained in:
parent
7a43bc37e9
commit
1328fb7beb
|
@ -41,5 +41,10 @@ deploy-job: # This job runs in the deploy stage.
|
||||||
script:
|
script:
|
||||||
- echo "Déploiement..."
|
- echo "Déploiement..."
|
||||||
- cd /home/webmaster/articles
|
- 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é."
|
- echo "Déploiement terminé."
|
||||||
|
|
Loading…
Reference in New Issue