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