-
Notifications
You must be signed in to change notification settings - Fork 1.1k
55 lines (50 loc) · 1.36 KB
/
doc.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
name: "Check and Publish Docs"
on:
workflow_dispatch:
pull_request:
paths:
- 'docs/**'
- 'wenet/**.py'
push:
branches:
- main
paths:
- 'docs/**'
- 'wenet/**.py'
jobs:
docs:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
os: [ubuntu-latest]
torch: ["2.2.2"]
python-version: ["3.10"]
steps:
- uses: actions/checkout@v1
- name: Setup Python ${{ matrix.python-version }}
uses: actions/setup-python@v2
with:
python-version: ${{ matrix.python-version }}
- name: Build doc
shell: bash
run: |
cd docs
python3 -m pip install -r ./requirements.txt
make api
make html
# add .nojekyll to notice Pages use the _* dirs
- name: copy the generated site
if: ${{ github.event_name == 'push' && github.ref == 'refs/heads/main' }}
run: |
mkdir public
touch public/.nojekyll
cp -r docs/_build/html/* public/
# push to gh-pages branch
- name: github pages deploy
if: ${{ github.event_name == 'push' && github.ref == 'refs/heads/main' }}
uses: peaceiris/[email protected]
env:
PERSONAL_TOKEN: ${{ secrets.GITHUB_TOKEN }}
PUBLISH_BRANCH: gh-pages
PUBLISH_DIR: public