nonebot2/.github/workflows/api_docs.yml

41 lines
1.0 KiB
YAML
Raw Normal View History

2020-09-13 22:32:55 +08:00
name: Build API Doc
on:
pull_request:
types: [ opened, synchronize, reopened ]
branches: [ master, dev ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
with:
ref: ${{ github.event.pull_request.head.sha }}
- name: Set up Python
uses: actions/setup-python@v2
with:
python-version: 3.8
architecture: "x64"
2020-09-13 22:32:55 +08:00
- name: Install Dependences
2020-09-23 23:14:03 +08:00
run: |
python -m pip install --upgrade pip
pip install poetry
poetry install
2020-09-13 22:32:55 +08:00
- name: Build Doc
run: poetry run sphinx-build -M markdown ./docs_build ./build
2020-09-13 22:32:55 +08:00
- name: Copy Files
run: cp ./build/markdown/*.md ./docs/api/
- run: |
git config user.name nonebot
git config user.email nonebot@nonebot.dev
git add .
git diff-index --quiet HEAD || git commit -m ":memo: update api docs"
git push origin HEAD:${{github.event.pull_request.head.ref}}