ci: add deployment pipeline for production documentation
This commit is contained in:
parent
d9079ac373
commit
0d2166e9ef
1 changed files with 27 additions and 1 deletions
28
.drone.yml
28
.drone.yml
|
@ -91,7 +91,7 @@
|
||||||
# ---
|
# ---
|
||||||
kind: pipeline
|
kind: pipeline
|
||||||
type: docker
|
type: docker
|
||||||
name: documentation
|
name: documentation — development
|
||||||
node:
|
node:
|
||||||
environment: ryali
|
environment: ryali
|
||||||
trigger:
|
trigger:
|
||||||
|
@ -112,3 +112,29 @@ steps:
|
||||||
|
|
||||||
- rm -rf /light_docs_dev/*
|
- rm -rf /light_docs_dev/*
|
||||||
- mv ./html/* /light_docs_dev/
|
- mv ./html/* /light_docs_dev/
|
||||||
|
|
||||||
|
---
|
||||||
|
|
||||||
|
kind: pipeline
|
||||||
|
type: docker
|
||||||
|
name: documentation — production
|
||||||
|
node:
|
||||||
|
environment: ryali
|
||||||
|
trigger:
|
||||||
|
event:
|
||||||
|
- tag
|
||||||
|
|
||||||
|
steps:
|
||||||
|
- name: build and deploy
|
||||||
|
image: documentation:latest
|
||||||
|
pull: if-not-exists
|
||||||
|
commands:
|
||||||
|
- pwd
|
||||||
|
- cd docs
|
||||||
|
- mkdir generated
|
||||||
|
- touch generated/changelogs.rst
|
||||||
|
- touch generated/api.rst
|
||||||
|
- sphinx-build -M html . .
|
||||||
|
|
||||||
|
- rm -rf /light_docs/*
|
||||||
|
- mv ./html/* /light_docs/
|
||||||
|
|
Loading…
Add table
Reference in a new issue