diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index cfe5310c2f7b3cd13fbe7675e6462f04532dd7d3..8a49c371c9352b7c34904d335ff6cf71783ed569 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -1,12 +1,12 @@ +image: binarin/org-export stages: - build build: - image: binarin/org-export stage: build script: - for file in $(find -name "*.org"); do - emacs --batch --load /emacs/export.el --file $file --eval '(org-html-export-to-html)' && echo "\n\nExported $file\n\n" || echo "\n\nERROR $file\n\n"; + emacs --batch --load /emacs/export.el --file $file --eval '(org-html-export-to-html)' && echo "Exported $file" || echo "ERROR $file"; done artifacts: expire_in: 1 day