From 4d033763d46a45e646e231ad418db0e2aff22628 Mon Sep 17 00:00:00 2001 From: Jake Henning <59198928+jkhenning@users.noreply.github.com> Date: Mon, 27 Dec 2021 19:27:26 +0200 Subject: [PATCH] Update links.yml --- .github/workflows/links.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/links.yml b/.github/workflows/links.yml index d3c2d58c..a462359c 100644 --- a/.github/workflows/links.yml +++ b/.github/workflows/links.yml @@ -25,12 +25,12 @@ jobs: - name: Find all markdown files id: find_files run: | - echo "::set-output name=files::$(find . -name '*.md')" + echo "::set-output name=files::$(find . -name '*.md' | tr '\n' ' ')" - name: Link Checker id: lychee uses: lycheeverse/lychee-action@v1.2.0 with: - args: --verbose --no-progress ${{join(steps.find_files.outputs.files, ' ')}} + args: --verbose --no-progress ${{steps.find_files.outputs.files}} env: GITHUB_TOKEN: ${{secrets.GITHUB_TOKEN}}