From c511ea99e2bf93364dc6584b13b006d1974794a5 Mon Sep 17 00:00:00 2001 From: Daniel Schmidt Date: Mon, 7 Oct 2024 10:26:26 +0200 Subject: [PATCH] chore: try to fix permission issue --- .github/workflows/registry-docs-pr-based.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/registry-docs-pr-based.yml b/.github/workflows/registry-docs-pr-based.yml index d7935a8e21..93a347b7ff 100644 --- a/.github/workflows/registry-docs-pr-based.yml +++ b/.github/workflows/registry-docs-pr-based.yml @@ -130,7 +130,7 @@ jobs: - id: set-matrix run: | - matrix=$(cdktf-registry-docs ci-matrix --max-runners=${{ inputs.maxRunners }} --files='${{ inputs.files }}' .) + matrix=$(npx cdktf-registry-docs ci-matrix --max-runners=${{ inputs.maxRunners }} --files='${{ inputs.files }}' .) // transforms '["a.md,b.md", "c.md,d.md"]' to '[{index: "0", value: "a.md,b.md"}, {index: "1", value: "c.md,d.md"}]' matrixWithIndex=$(echo $matrix | jq -r 'to_entries | map({index: "\(.key)", value: .value})') echo "matrix=$matrixWithIndex" >> $GITHUB_OUTPUT