From d76af50c83a876548752cedb992fc39fa50ee402 Mon Sep 17 00:00:00 2001 From: Kevin Franklin Kim Date: Wed, 24 Nov 2021 16:16:23 +0100 Subject: [PATCH] chore: fix typo --- .github/workflows/checks.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/checks.yml b/.github/workflows/checks.yml index 617cc95..a1f8b97 100644 --- a/.github/workflows/checks.yml +++ b/.github/workflows/checks.yml @@ -25,7 +25,8 @@ jobs: - id: set-matrix run: | matrix=$(find . -type file -name "go.mod" -print0 | xargs -0 -n1 dirname | sort --unique | jq -R -s -c 'split("\n")[:-1]') - echo "::set-output name=matrix::$matrix}" + echo "${matrix}" + echo "::set-output name=matrix::${matrix}" go_lint: name: go lint needs: go_matrix