Skip to content

Commit 904f87a

Browse files
committed
gh-pages: render multiple langs
1 parent c93e12f commit 904f87a

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

.github/workflows/gh-pages.yaml

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,11 @@ jobs:
3434
run: make container-pull
3535

3636
- name: Build documentation
37-
run: make html
37+
run: |
38+
make html
39+
for lang in en es pt_BR pt_PT ja zh_Hans; do
40+
make html BUILDDIR=_build/${lang} SPHINXOPTS="-D language=${lang}"
41+
done
3842
3943
- name: Deploy
4044
uses: peaceiris/actions-gh-pages@v3

0 commit comments

Comments
 (0)