mirror of
https://github.com/LemmyNet/lemmy-docs.git
synced 2024-11-24 05:11:09 +00:00
step
This commit is contained in:
parent
e246b414e6
commit
412dd46a9c
2 changed files with 6 additions and 5 deletions
|
@ -2,6 +2,12 @@ kind: pipeline
|
|||
name: default
|
||||
|
||||
steps:
|
||||
- name: fetch git submodules
|
||||
image: alpine/git
|
||||
commands:
|
||||
- git submodule init
|
||||
- git submodule update --recursive --remote
|
||||
|
||||
- name: check documentation build
|
||||
image: rust:1.49-slim-buster
|
||||
commands:
|
||||
|
|
5
build.sh
5
build.sh
|
@ -1,11 +1,6 @@
|
|||
#!/bin/bash
|
||||
set -e
|
||||
|
||||
git submodule init
|
||||
git submodule foreach git pull
|
||||
git submodule update --recursive --remote
|
||||
ls -la lemmy
|
||||
|
||||
# generate config docs
|
||||
pushd lemmy
|
||||
mkdir -p ../generated
|
||||
|
|
Loading…
Reference in a new issue