update docs workflow

This commit is contained in:
Tony031218
2021-02-14 21:23:51 +08:00
parent b7e2abb801
commit 0f95e80798
2 changed files with 4 additions and 29 deletions

View File

@ -4,6 +4,9 @@ on:
push:
paths:
- 'docs/**'
pull_request:
paths:
- 'docs/**'
jobs:
docs:
@ -29,6 +32,7 @@ jobs:
make html
- name: Deploy to GitHub pages
if: ${{ github.event_name == 'push' }}
uses: JamesIves/github-pages-deploy-action@3.7.1
with:
ACCESS_TOKEN: ${{ secrets.DOC_DEPLOY_TOKEN }}

View File

@ -1,29 +0,0 @@
name: docs_test
on:
pull_request:
paths:
- 'docs/**'
jobs:
docs_test:
runs-on: ubuntu-latest
name: Test document for pull requests
steps:
- name: Checkout
uses: actions/checkout@master
- name: Install sphinx and manim env
run: |
pip3 install --upgrade pip
sudo apt install python3-setuptools
pip3 install -r docs/requirements.txt
pip3 install -r requirements.txt
- name: Build document with Sphinx
run: |
cd docs
export PATH="$PATH:/home/runner/.local/bin"
export SPHINXBUILD="python3 -m sphinx"
make html