diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 088f4ff..0e33ce0 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -1,18 +1,10 @@ image: blang/latex -# stages: -# - build -# - documentation - build: script: + # Build the actual *.cls file - pdflatex uhhassignment.ins - artifacts: - paths: - - "uhhassignment.cls" - -documentation: - script: + # Build the documentation files - pdflatex uhhassignment.dtx - makeindex -s gind.ist uhhassignment - makeindex -s gglo.ist -o uhhassignment.gls uhhassignment.glo @@ -20,5 +12,5 @@ documentation: - pdflatex uhhassignment.dtx artifacts: paths: + - "uhhassignment.cls" - "uhhassignment.pdf" -