pse-documentation/11-entwurfsheft-kolloquium/.gitlab-ci.yml
2024-05-24 17:47:22 +02:00

37 lines
544 B
YAML

plantuml:
stage: .pre
image:
name: plantuml/plantuml
entrypoint: [""]
script:
- java -jar plantuml.jar -tpdf assets/diagrams/*.puml
artifacts:
paths:
- assets
tex:
stage: build
image: texlive/texlive
script:
- mkdir public
- make tex
- mv *.pdf public
artifacts:
paths:
- public
dependencies:
- plantuml
pages:
stage: deploy
script:
- echo Hello, World!
artifacts:
paths:
- public
rules:
- if: $CI_COMMIT_BRANCH == $CI_DEFAULT_BRANCH
dependencies:
- tex