Update .gitlab-ci.yml file

This commit is contained in:
Adrien Bourmault 2022-08-12 15:28:26 +00:00
parent c7dc5ec371
commit b34199aef3
1 changed files with 2 additions and 2 deletions

View File

@ -21,7 +21,7 @@ synchro-et-tests:
stage: build stage: build
script: script:
- rsync -avzlh * /home/webmaster/site-chalec.org/articles/ - rsync -avzlh * /home/webmaster/site-chalec.org/articles/
- files=(git diff-tree --no-commit-id --name-only -r $CI_COMMIT_SHA|grep stl) - files=($(git diff-tree --no-commit-id --name-only -r $CI_COMMIT_SHA|grep stl))
- cd /home/webmaster/site-chalec.org/articles - cd /home/webmaster/site-chalec.org/articles
- |+ - |+
for file in $files for file in $files
@ -38,7 +38,7 @@ deploiement: # This job runs in the deploy stage.
stage: deploy # It only runs when *both* jobs in the test stage complete successfully. stage: deploy # It only runs when *both* jobs in the test stage complete successfully.
script: script:
- cd /home/webmaster/site-chalec.org/articles - cd /home/webmaster/site-chalec.org/articles
- files=(git diff-tree --no-commit-id --name-only -r $CI_COMMIT_SHA|grep stl) - files=($(git diff-tree --no-commit-id --name-only -r $CI_COMMIT_SHA|grep stl))
- |+ - |+
for file in $files for file in $files
do do