From baecb466f7263785a05a61922a144f9addb35183 Mon Sep 17 00:00:00 2001 From: Christian Wolf Date: Fri, 26 Nov 2021 07:53:34 +0100 Subject: [PATCH] Added dedicated build step to build only the English version. This should allow to always see the errors in the original files, even if translations rise more errors than allowed. Signed-off-by: Christian Wolf --- .github/workflows/sphinxbuild.yml | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/.github/workflows/sphinxbuild.yml b/.github/workflows/sphinxbuild.yml index 656cdba74..e801d461a 100644 --- a/.github/workflows/sphinxbuild.yml +++ b/.github/workflows/sphinxbuild.yml @@ -17,6 +17,15 @@ jobs: docs-folder: "user_manual/" pre-build-command: pip install -r requirements.txt build-command: make html + user_manual-en: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v1 + - uses: ammaraskar/sphinx-action@master + with: + docs-folder: "user_manual/" + pre-build-command: pip install -r requirements.txt + build-command: make html-lang-en developer_manual: runs-on: ubuntu-latest steps: