From ab7cc66991f33249df80790bbd7f74113870969f Mon Sep 17 00:00:00 2001 From: SonOfLope Date: Fri, 5 Apr 2024 14:33:17 -0400 Subject: [PATCH] Issue #github-workflow-89: fix path --- .github/workflows/workflow-markdown-check.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/workflow-markdown-check.yml b/.github/workflows/workflow-markdown-check.yml index 63a6756c..9ba00533 100644 --- a/.github/workflows/workflow-markdown-check.yml +++ b/.github/workflows/workflow-markdown-check.yml @@ -35,7 +35,7 @@ jobs: id: linkconfig run: | if [ -z "${{ inputs.md-link-config-file-path }}" ]; then - echo "::set-output name=link_config_path::.mlc_config.json" + echo "::set-output name=link_config_path::github-workflows/.mlc_config.json" else echo "::set-output name=link_config_path::${{ github.workspace }}/${{ inputs.md-link-config-file-path }}" fi @@ -44,7 +44,7 @@ jobs: id: lintconfig run: | if [ -z "${{ inputs.md-lint-config-file-path }}" ]; then - echo "::set-output name=lint_config_path::.markdownlint.json" + echo "::set-output name=lint_config_path::github-workflows/.markdownlint.json" else echo "::set-output name=lint_config_path::${{ github.workspace }}/${{ inputs.md-lint-config-file-path }}" fi