You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
24 lines
390 B
24 lines
390 B
kind: pipeline
|
|
type: docker
|
|
name: CI
|
|
|
|
trigger:
|
|
when:
|
|
branch:
|
|
- master
|
|
- doc
|
|
event:
|
|
- push
|
|
|
|
steps:
|
|
- name: generate-and-deploy-docs
|
|
image: hub.codefirst.iut.uca.fr/maxime.batista/codefirst-docdeployer:latest
|
|
failure: ignore
|
|
commands:
|
|
- /entrypoint.sh -l doc -t doxygen
|
|
when:
|
|
branch:
|
|
- master
|
|
- doc
|
|
event:
|
|
- push |