From 690f7395edc379a1a92b409a2752c096072d0c91 Mon Sep 17 00:00:00 2001
From: speech_asr <wangjiaming.wjm@alibaba-inc.com>
Date: 星期二, 14 二月 2023 17:29:55 +0800
Subject: [PATCH] update docs
---
.github/workflows/main.yml | 12 +++++++++++-
1 files changed, 11 insertions(+), 1 deletions(-)
diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml
index cfb94f3..50b6b1e 100644
--- a/.github/workflows/main.yml
+++ b/.github/workflows/main.yml
@@ -14,6 +14,11 @@
- uses: actions/checkout@v1
- uses: ammaraskar/sphinx-action@master
with:
+ docs-folder: "docs/"
+ pre-build-command: "pip install sphinx-markdown-tables nbsphinx jinja2 recommonmark sphinx_rtd_theme"
+ - uses: actions/checkout@v1
+ - uses: ammaraskar/sphinx-action@master
+ with:
docs-folder: "docs_cn/"
pre-build-command: "pip install sphinx-markdown-tables nbsphinx jinja2 recommonmark sphinx_rtd_theme"
@@ -22,7 +27,12 @@
run: |
mkdir public
touch public/.nojekyll
- cp -r docs_cn/_build/html/* public/
+ mkdir public/en
+ touch public/en/.nojekyll
+ cp -r docs/_build/html/* public/en/
+ mkdir public/cn
+ touch public/cn/.nojekyll
+ cp -r docs_cn/_build/html/* public/cn/
- name: deploy github.io pages
if: github.ref == 'refs/heads/main' || github.ref == 'refs/heads/dev'
--
Gitblit v1.9.1