org-cv/.gitlab-ci.yml

30 lines
460 B
YAML
Raw Normal View History

2018-04-25 16:17:21 +00:00
image: najeraoscar/latex-emacs-min
2018-05-01 21:33:17 +00:00
variables:
GIT_SUBMODULE_STRATEGY: recursive
before_script:
- ./installs.sh
test:
script:
2018-04-19 11:19:05 +00:00
- emacs --batch -Q --script genfiles.el
- cd doc; hugo
except:
- master
artifacts:
paths:
- doc/public
2018-05-01 21:33:17 +00:00
pages:
script:
- emacs --batch -Q --script genfiles.el
- cd doc; hugo
2018-05-01 22:32:56 +00:00
- mv public/ ../public/ # Because I remain now in the doc folder
2018-05-01 21:33:17 +00:00
artifacts:
paths:
- public
only:
- master