diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index a94dd9ac1d95dadc2c09be47e42ebc2503638fd0..788a26c04b1dbd5c94112aa4a87e278e6f831aa4 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -1,12 +1,10 @@ pages: stage: deploy script: - - mkdir .public - for file in $(find -name "*.md"); do pandoc -s -f markdown_github -t html -o ${file%.*}.html $file && echo "Exported ${file%.*}.html" || echo "ERROR $file"; done - - cp -r * .public - - mv .public public + - mv * public artifacts: paths: - public