File tree Expand file tree Collapse file tree 1 file changed +5
-5
lines changed
Expand file tree Collapse file tree 1 file changed +5
-5
lines changed Original file line number Diff line number Diff line change 6969 # Filter away the shared filter
7070 EXTENSIONS_CHANGED=$(echo "$CHANGES" | jq -c 'map(select(. != "_shared"))')
7171
72- echo "{\"name\": $EXTENSIONS_CHANGED}" > matrix.json
73- echo "matrix=$(cat matrix.json)" >> "$GITHUB_OUTPUT"
72+ echo "matrix=$EXTENSIONS_CHANGED" >> "$GITHUB_OUTPUT"
7473
7574 Bake :
7675 name : Bake
@@ -80,12 +79,13 @@ jobs:
8079 contents : read
8180 id-token : write
8281 security-events : write
83- if : ${{ join(fromJSON(needs.change-triage.outputs.matrix).name ) != '' }}
82+ if : ${{ join(fromJSON(needs.change-triage.outputs.matrix)) != '' }}
8483 strategy :
8584 fail-fast : false
86- matrix : ${{ fromJSON(needs.change-triage.outputs.matrix) }}
85+ matrix :
86+ extension : ${{ fromJSON(needs.change-triage.outputs.matrix) }}
8787 uses : ./.github/workflows/bake_targets.yml
8888 with :
89- extension_name : ${{ matrix.name }}
89+ extension_name : ${{ matrix.extension }}
9090 secrets :
9191 SNYK_TOKEN : ${{ secrets.SNYK_TOKEN }}
You can’t perform that action at this time.
0 commit comments