Skip to content

Instantly share code, notes, and snippets.

@cn-ml
Created April 18, 2023 17:13
Show Gist options
  • Save cn-ml/778671601a68b3493cb1424a1caae497 to your computer and use it in GitHub Desktop.
Save cn-ml/778671601a68b3493cb1424a1caae497 to your computer and use it in GitHub Desktop.
Build LaTeX document using Gitlab CI Docker Executor
image: mfisherman/texlive-full:2022
stages:
- build
build-job:
stage: build
script:
- latexmk -interaction=nonstopmode -file-line-error -pdf main
artifacts:
expose_as: Document
paths:
- main.pdf
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment