From 2fda1646d9e643b4d9c8f99d7887fd1c6655f645 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Wolfgang=20St=C3=B6ggl?= Date: Sun, 11 Oct 2020 03:48:34 +0200 Subject: [PATCH] Add generation of online-help to CI (#2843) --- .github/workflows/CI-unixish.yml | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/.github/workflows/CI-unixish.yml b/.github/workflows/CI-unixish.yml index 1b7a01580..157f9193e 100644 --- a/.github/workflows/CI-unixish.yml +++ b/.github/workflows/CI-unixish.yml @@ -83,6 +83,12 @@ jobs: make -j$(nproc) ./test-projectfile + - name: Generate Qt help file on ubuntu + if: matrix.os == 'ubuntu-latest' + run: | + pushd gui/help + qhelpgenerator online-help.qhcp -o online-help.qhc + # Run self check after "Build GUI" to include generated headers in analysis - name: Self check if: matrix.os == 'ubuntu-latest'