caltema/gitlab-ci.yml
2024-03-20 11:13:10 -05:00

22 lines
295 B
YAML

image: debian:latest
before_script:
- bash ./bin/debian_pandoc.sh >/dev/null
test:
stage: test
script:
- bash ./bin/generate_html.sh
only:
- branches
- tags
pages:
stage: deploy
script:
- bash ./bin/generate_html.sh
artifacts:
paths:
- public
only:
- master