# This file is a template, and might need editing before it works on your project. # Full project: https://gitlab.com/pages/plain-html # preprocessing: image: name: alpine:latest script: - ./preprocMd.sh artifacts: paths: - ./build/* pandoc: image: name: pandoc/latex:2.6 entrypoint: ["/bin/sh", "-c"] script: - ./buildPandoc.sh artifacts: paths: - ./build/* pages: stage: deploy script: - mkdir .public - cp -r build/* .public - mv .public public artifacts: paths: - public rules: - if: $CI_COMMIT_BRANCH == $CI_DEFAULT_BRANCH