2018-04-26 18:12:08 +02:00
|
|
|
#!/bin/bash -eux
|
|
|
|
|
# Building sphinx and swagger docs
|
2022-03-21 12:01:29 +01:00
|
|
|
poetry run sphinx-multiversion . $BUILD_PATH
|
2018-04-26 18:12:08 +02:00
|
|
|
TARGET_PATH="$BUILD_PATH/swagger" ./build_swagger.sh
|
2019-04-01 11:36:13 +02:00
|
|
|
python ./get-releases-json.py > $BUILD_PATH/releases.json
|
2019-08-23 09:47:20 +02:00
|
|
|
python ./get-releases-json.py --latest > $BUILD_PATH/latest.txt
|