From ca03692e0af730fcb30770dc3c21fadbe4156579 Mon Sep 17 00:00:00 2001 From: mahula Date: Sun, 26 Nov 2023 19:14:05 +0100 Subject: [PATCH] adapt check dokumentation workflow to documentation automation requirements --- .github/workflows/check-documentation.yml | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/.github/workflows/check-documentation.yml b/.github/workflows/check-documentation.yml index d374f41e8..d38cfad3a 100644 --- a/.github/workflows/check-documentation.yml +++ b/.github/workflows/check-documentation.yml @@ -7,7 +7,8 @@ jobs: name: Detect File Changes - Markdown files runs-on: ubuntu-latest outputs: - markdown-files: ${{ steps.changes.outputs.markdown-files }} + markdown: ${{ steps.changes.outputs.markdown }} + vuepress: ${{ steps.changes.outputs.vuepress }} steps: - name: Checkout code uses: actions/checkout@master @@ -22,9 +23,9 @@ jobs: check-markdown-links: name: Check Markdown links - if: needs.files-changed.outputs.markdown-files == 'true' needs: files-changed runs-on: ubuntu-latest + if: needs.files-changed.outputs.markdown == 'true' steps: - name: Checkout code uses: actions/checkout@master