hnluo
2023-04-17 24f73665e2d8ea8e4de2fe4f900bc539d7f7b989
.github/workflows/main.yml
@@ -5,7 +5,8 @@
      - main
  push:
    branches:
      - dev
      - dev_wjm
      - main
jobs:
  docs:
@@ -17,14 +18,15 @@
          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"
        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
          touch public/.nojekyll
          mkdir public/en
          touch public/en/.nojekyll
          cp -r docs/_build/html/* public/en/
@@ -33,7 +35,7 @@
          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 }}