浏览代码

GitHub Actions: Don't build with warnings-as-errors for offline doc

The class reference may have invalid parts which otherwise prevent
building the offline documentation.
Hugo Locurcio 3 年之前
父节点
当前提交
7b35584569
共有 1 个文件被更改,包括 1 次插入1 次删除
  1. 1 1
      .github/workflows/build_offline_docs.yml

+ 1 - 1
.github/workflows/build_offline_docs.yml

@@ -28,7 +28,7 @@ jobs:
       # Build the HTML to upload it.
       - name: Sphinx build
         run: |
-          sphinx-build --color -d _build/doctrees -W . _build/html
+          sphinx-build --color -d _build/doctrees . _build/html
 
       - uses: actions/upload-artifact@v2
         with: