22 lines
295 B
YAML
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
|