mirror of
https://github.com/Mayuri-Chan/pyrofork.git
synced 2025-12-29 12:04:51 +00:00
42 lines
1.3 KiB
Bash
42 lines
1.3 KiB
Bash
#!/bin/bash
|
|
export DOCS_KEY
|
|
VENV="$(pwd)"/venv
|
|
export VENV
|
|
|
|
make clean
|
|
make clean-docs
|
|
make venv
|
|
make api
|
|
"$VENV"/bin/pip install -e '.[docs]'
|
|
cd compiler/docs || exit 1 && "$VENV"/bin/python compiler.py
|
|
cd ../.. || exit 1
|
|
"$VENV"/bin/sphinx-build -b html "docs/source" "docs/build/html" -j auto
|
|
git clone https://wulan17:"$DOCS_KEY"@github.com/Mayuri-Chan/pyrofork-docs.git
|
|
refs=$(echo "$GITHUB_REF" | cut -d '/' -f "1 2")
|
|
if [[ "$refs" == "refs/tags" ]]; then
|
|
branch="main"
|
|
elif [[ "$GITHUB_REF" == "refs/heads/staging" ]]; then
|
|
branch="staging"
|
|
else
|
|
b="$(echo "$GITHUB_REF" | cut -d '/' -f '3 4')"
|
|
if [[ $(echo "$b" | cut -d '/' -f 1 ) == "dev" ]]; then
|
|
b="$(echo "$b" | cut -d '/' -f 2)"
|
|
if [[ "$b" =~ ^[0-9]\.[0-9]\.x ]]; then
|
|
branch="$b"
|
|
else
|
|
exit 0
|
|
fi
|
|
else
|
|
exit 0
|
|
fi
|
|
fi
|
|
cd pyrofork-docs || exit 1
|
|
mkdir -p "$branch"
|
|
cd "$branch" || exit 1
|
|
rm -rf _includes api genindex.html intro py-modindex.html sitemap.xml support.html topics _static faq index.html objects.inv searchindex.js start telegram
|
|
cp -r ../../docs/build/html/* .
|
|
git config --local user.name "Mayuri-Chan"
|
|
git config --local user.email "mayuri@mayuri.my.id"
|
|
git add --all
|
|
git commit -a -m "docs: $branch: Update docs $(date '+%Y-%m-%d | %H:%m:%S %p %Z')" --signoff
|
|
git push -u origin --all
|