1
0
Fork 0
org-cv/.gitlab-ci.yml

32 lines
514 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:
2023-10-21 23:53:54 +00:00
- emacs --batch -Q --script genfiles.el
- cd doc; hugo
except:
2023-10-21 23:53:54 +00:00
- master
artifacts:
paths:
- doc/public
2023-10-21 23:53:54 +00:00
- org-cv-exports
when: always
2018-05-01 21:33:17 +00:00
pages:
script:
2023-10-21 23:53:54 +00:00
- emacs --batch -Q --script genfiles.el
- cd doc; hugo
- mv public/ ../public/ # Because I remain now in the doc folder
2018-05-01 21:33:17 +00:00
artifacts:
paths:
- public
only:
2023-10-21 23:53:54 +00:00
- master