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.
25 lines
448 B
25 lines
448 B
kind: pipeline
|
|
type: docker
|
|
name: SmartFit_Docs
|
|
|
|
trigger:
|
|
event:
|
|
- push
|
|
branch:
|
|
- master
|
|
|
|
steps:
|
|
- name: build-docs
|
|
image: node:21-alpine3.18
|
|
commands:
|
|
- yarn install --frozen-lockfile
|
|
- yarn build
|
|
|
|
- name: deploy-site
|
|
image: hub.codefirst.iut.uca.fr/maxime.batista/codefirst-docdeployer:0.2
|
|
settings:
|
|
source: build
|
|
target: docusaurus
|
|
failure: ignore
|
|
depends_on: [build-docs]
|