mirror of
https://github.com/lxsang/antd-lua-plugin
synced 2025-01-01 03:58:22 +01:00
11 lines
266 B
Bash
11 lines
266 B
Bash
|
#!/usr/bin/env bash
|
||
|
|
||
|
SCRIPT_PATH=`dirname $0`
|
||
|
GH_PAGES_PATH=${SCRIPT_PATH}/../../pages/fann/
|
||
|
|
||
|
${SCRIPT_PATH}/generate_docs.sh
|
||
|
|
||
|
cp -a ${SCRIPT_PATH}/html/* ${GH_PAGES_PATH}/docs/
|
||
|
cd ${GH_PAGES_PATH}
|
||
|
git commit -a -m "Automated update of docs"
|
||
|
git push origin gh-pages
|