5 lines
194 B
Bash
Executable file
5 lines
194 B
Bash
Executable file
#!/bin/bash -eux
|
|
# Building sphinx and swagger docs
|
|
python -m sphinx . $BUILD_PATH
|
|
TARGET_PATH="$BUILD_PATH/swagger" ./build_swagger.sh
|
|
python ./get-releases-json.py > $BUILD_PATH/releases.json
|