From 66b502164d0f9bef3cf367f2e588fffb1596e6bb Mon Sep 17 00:00:00 2001
From: 游雁 <zhifu.gzf@alibaba-inc.com>
Date: 星期二, 18 四月 2023 16:14:28 +0800
Subject: [PATCH] docs

---
 .github/workflows/main.yml |   26 ++++++++++++++++++--------
 1 files changed, 18 insertions(+), 8 deletions(-)

diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml
index b0049b2..5fc4f28 100644
--- a/.github/workflows/main.yml
+++ b/.github/workflows/main.yml
@@ -5,7 +5,8 @@
       - main
   push:
     branches:
-      - dev
+      - dev_wjm
+      - main
 
 jobs:
   docs:
@@ -14,20 +15,29 @@
       - 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: ammaraskar/sphinx-action@master
+        with:
           docs-folder: "docs_cn/"
           pre-build-command: "pip install sphinx-markdown-tables nbsphinx jinja2 recommonmark sphinx_rtd_theme"
 
       - name: deploy copy
-        if: github.ref == 'refs/heads/main' || github.ref == 'refs/heads/dev'
+        if: github.ref == 'refs/heads/main' || github.ref == 'refs/heads/dev_wjm'
         run: |
-          mkdir public_cn
-          touch public_cn/.nojekyll
-          cp -r docs_cn/_build/html/* public_cn/
+          mkdir public
+          touch public/.nojekyll
+          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'
+        if: github.ref == 'refs/heads/main' || github.ref == 'refs/heads/dev_wjm'
         uses: peaceiris/actions-gh-pages@v2.3.1
         env:
           GITHUB_TOKEN: ${{ secrets.ACCESS_TOKEN }}
-          PUBLISH_BRANCH: gh-pages-cn
-          PUBLISH_DIR: public_cn
\ No newline at end of file
+          PUBLISH_BRANCH: gh-pages
+          PUBLISH_DIR: public
\ No newline at end of file

--
Gitblit v1.9.1