mirror of
https://github.com/LemmyNet/lemmy-docs.git
synced 2024-11-22 12:21:10 +00:00
16 lines
473 B
YAML
16 lines
473 B
YAML
pipeline:
|
|
fetch_git_submodules:
|
|
image: alpine/git
|
|
commands:
|
|
- git submodule init
|
|
- git submodule update --recursive --remote
|
|
|
|
check_documentation_build:
|
|
image: rust:1.61-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 git curl -y
|
|
- ./update-includes.sh
|
|
- mdbook build .
|