forked from DSIT/documentation-dsit
16 lines
294 B
YAML
16 lines
294 B
YAML
kind: pipeline
|
|
name: Build & publish main
|
|
|
|
steps:
|
|
# Build mkdocs website
|
|
- name: build
|
|
image: python:latest
|
|
commands:
|
|
- pip install mkdocs-material
|
|
- mkdocs build --site-dir public
|
|
|
|
#Publish
|
|
- name: publish
|
|
image: python:latest
|
|
commands:
|
|
- ls -alR public |