From 7f00c08e02d0949788202a7ea57dc2ca070ce7a7 Mon Sep 17 00:00:00 2001 From: mahula Date: Thu, 25 Jan 2024 10:44:07 +0100 Subject: [PATCH] set correct file filter in docs check workflow --- .github/workflows/check-documentation.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/check-documentation.yml b/.github/workflows/check-documentation.yml index 80462fe8d6..cf5c53cce7 100644 --- a/.github/workflows/check-documentation.yml +++ b/.github/workflows/check-documentation.yml @@ -8,7 +8,7 @@ jobs: runs-on: ubuntu-latest outputs: markdown: ${{ steps.changes.outputs.markdown }} - vuepress: ${{ steps.changes.outputs.vuepress }} + documentation: ${{ steps.changes.outputs.documentation }} steps: - name: Checkout code uses: actions/checkout@master @@ -45,7 +45,7 @@ jobs: name: Test Vuepress build needs: files-changed runs-on: ubuntu-latest - if: needs.files-changed.outputs.vuepress == 'true' + if: needs.files-changed.outputs.documentation == 'true' steps: - name: Checkout code uses: actions/checkout@master