diff --git a/.github/workflows/api_docs.yml b/.github/workflows/api_docs.yml new file mode 100644 index 00000000..01c1c4a8 --- /dev/null +++ b/.github/workflows/api_docs.yml @@ -0,0 +1,31 @@ +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: Install Dependences + run: pip3 install . + + - name: Build Doc + run: sphinx-build -M markdown ./docs_build ./build + + - 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 commit -m ":memo: update api docs" + git push