org-cv/.gitlab-ci.yml
2018-05-02 00:32:56 +02:00

29 lines
460 B
YAML

image: najeraoscar/latex-emacs-min
variables:
GIT_SUBMODULE_STRATEGY: recursive
before_script:
- ./installs.sh
test:
script:
- emacs --batch -Q --script genfiles.el
- cd doc; hugo
except:
- master
artifacts:
paths:
- doc/public
pages:
script:
- emacs --batch -Q --script genfiles.el
- cd doc; hugo
- mv public/ ../public/ # Because I remain now in the doc folder
artifacts:
paths:
- public
only:
- master