blob: 8bc83f266ec526a2d41e754f15a0439fffc8d2e3 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
|
plantuml:
stage: .pre
image:
name: plantuml/plantuml
entrypoint: [""]
script:
- java -jar plantuml.jar -tsvg assets/diagrams/*.puml
artifacts:
paths:
- assets/diagrams
pages:
image:
name: webpronl/reveal-md:latest
entrypoint: [""]
script:
- node /app/bin/reveal-md.js presentation.md --static public --static-dirs assets
artifacts:
paths:
- public
rules:
- if: $CI_COMMIT_BRANCH == $CI_DEFAULT_BRANCH
dependencies:
- plantuml
|