From b130bc2318c2913233afc65fb212661bb105f850 Mon Sep 17 00:00:00 2001 From: "Y.Hisaki" Date: Fri, 13 Dec 2024 11:40:37 +0900 Subject: [PATCH] fix Signed-off-by: Y.Hisaki --- clang-tidy/action.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/clang-tidy/action.yaml b/clang-tidy/action.yaml index dc2e61b9..1317f98b 100644 --- a/clang-tidy/action.yaml +++ b/clang-tidy/action.yaml @@ -152,12 +152,12 @@ runs: files: /tmp/clang-tidy-result/report.log - name: Setup Problem Matcher - if: ${{ steps.check-report-txt-existence.outputs.exists == 'true' }} + if: ${{ steps.check-report-log-existence.outputs.exists == 'true' }} run: echo "::add-matcher::$GITHUB_ACTION_PATH/problem-matcher.json" shell: bash - name: Show clang-tidy result - if: ${{ steps.check-report-txt-existence.outputs.exists == 'true' }} + if: ${{ steps.check-report-log-existence.outputs.exists == 'true' }} run: cat /tmp/clang-tidy-result/report.log shell: bash