diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index f1777928c6b373b25fc09743201fb2600f91ad33..3e05f9481b309a03814af53fb64f48dd6a7d7ae0 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -1,6 +1,7 @@ pages: stage: deploy script: + - pandoc --version - 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