diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 0b14a4da9d66350d49409d5d3994fcd42cd130f4..161cdb82573e6ff7575dd14bdde118a23b98de26 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -8,7 +8,7 @@ pages: - for file in $(find -name "*.md"); do pandoc -s -f gfm -t html -o ${file%.*}.html $file && echo "Exported ${file%.*}.html" && echo "
  • ${file%.*}.html
  • " >> index.html || echo "ERROR $file"; bin/pandoc_fixer.pl ${file} > ${file}.new; - mv ${file}.new ${file}; + mv ${file}.new ${file%.*}.html; done # The next part is broken because pandoc is way too old on this image :( # - for file in $(find -name "*.org"); do