lemmy-docs/.drone.yml

20 lines
510 B
YAML
Raw Normal View History

2021-01-18 16:08:20 +00:00
kind: pipeline
name: default
steps:
- name: fetch git submodules
image: alpine/git
commands:
- git submodule init
- git submodule update --recursive --remote
2021-01-18 16:08:20 +00:00
- name: check documentation build
image: rust:1.49-slim-buster
commands:
- cargo install mdbook --git https://github.com/Ruin0x11/mdBook.git --branch localization
--rev 9d8147c --force --debug
- apt-get update
- apt-get install curl -y
- ./update-includes.sh
2021-01-18 16:08:20 +00:00
- mdbook build .