From 9b28d24bd4291cb60df7c114e34f672e65a4ed62 Mon Sep 17 00:00:00 2001 From: Christian Wolf Date: Thu, 29 Sep 2022 19:27:04 +0200 Subject: [PATCH] Fix problems in workflow scripts Signed-off-by: Christian Wolf --- .github/workflows/pages.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/pages.yml b/.github/workflows/pages.yml index 5cd36eda..e72dd373 100644 --- a/.github/workflows/pages.yml +++ b/.github/workflows/pages.yml @@ -40,13 +40,13 @@ jobs: id: count-plantuml run: | count=$(find docs/ -name \*.puml | wc -l) - echo "There are $count number of plantuml files" + echo "There are $count plantuml files" echo "::set-output name=num::$count" - name: Install PlantUML on demand if: steps.count-plantuml.outputs.num > 0 run: | - apt-get update - apt-get install --no-install-recommends plantuml + sudo apt-get update + sudo apt-get install --no-install-recommends -y plantuml - name: Build PlantUML images if: steps.count-plantuml.outputs.num > 0 run: make -C docs build-uml-svg