Skip to content

Commit 072a52f

Browse files
committed
Add step to build english docs
1 parent be5b8bc commit 072a52f

File tree

1 file changed

+8
-2
lines changed

1 file changed

+8
-2
lines changed

.github/workflows/build-docs-actions.yml

Lines changed: 8 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -29,9 +29,15 @@ jobs:
2929
pip install linuxdoc
3030
- name: Prepare _site
3131
run: |
32-
mkdir -p _site/pyarmor/docs/
32+
mkdir -p _site/pyarmor/
3333
cp index.html _site/
34-
- name: Build static files
34+
- name: Build static files for en
35+
id: build
36+
run: |
37+
make html
38+
mv _build/html/ ../../../_site/pyarmor/docs
39+
working-directory: ./pyarmor/docs
40+
- name: Build static files for zh
3541
id: build
3642
run: |
3743
make html

0 commit comments

Comments
 (0)