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@christianwolf.email>
This commit is contained in:
Christian Wolf
2021-11-26 07:53:34 +01:00
parent de6180fdee
commit baecb466f7

View File

@@ -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: