aboutsummaryrefslogtreecommitdiff
path: root/.gitlab-ci.yml
blob: e0f663386948b2eba816d98c2424689c117e9227 (plain)
  1. image: 
  2. name: pandoc/latex:2.10.2
  3. entrypoint: ["/bin/sh", "-c"]
  4. stages:
  5. - build
  6. build:
  7. stage: build
  8. script:
  9. - tlmgr update --self
  10. - tlmgr install footmisc
  11. - pandoc --version
  12. - mkdir build
  13. - chmod +x ./build.sh
  14. - ./build.sh
  15. artifacts:
  16. paths:
  17. - "build"