summaryrefslogtreecommitdiff
path: root/ci/jobs/0-build/build-docs.sh
blob: 6accee362a025c33aa3ce5552a09ee80ea7b8ecd (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#!/bin/bash

set -eu

make html
make latexpdf

rm -rf /artifacts/docs_build

mkdir -p /artifacts/docs_build/docs/html/
mkdir -p /artifacts/docs_build/docs/pdf/

cp -r _build/html/* /artifacts/docs_build/docs/html/
cp -r _build/latex/*.pdf /artifacts/docs_build/docs/pdf/