File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change 16
16
get-build-matrix :
17
17
runs-on : ubuntu-latest
18
18
outputs :
19
- examples : ${{ steps.get-matrix.outputs.examples }}
19
+ examples_json : ${{ steps.get-matrix.outputs.examples_json }}
20
20
EXAMPLES : ${{ steps.get-matrix.outputs.EXAMPLES }}
21
21
TAG : ${{ steps.get-matrix.outputs.TAG }}
22
22
PUBLISH_TAGS : ${{ steps.get-matrix.outputs.PUBLISH_TAGS }}
26
26
run : |
27
27
examples=($(echo ${EXAMPLES} | tr ',' ' '))
28
28
examples_json=$(printf '%s\n' "${examples[@]}" | sort -u | jq -R '.' | jq -sc '.')
29
- echo "examples =$examples_json" >> $GITHUB_OUTPUT
29
+ echo "examples_json =$examples_json" >> $GITHUB_OUTPUT
30
30
echo "EXAMPLES=$EXAMPLES" >> $GITHUB_OUTPUT
31
31
echo "TAG=$TAG" >> $GITHUB_OUTPUT
32
32
echo "PUBLISH_TAGS=$PUBLISH_TAGS" >> $GITHUB_OUTPUT
35
35
needs : get-build-matrix
36
36
strategy :
37
37
matrix :
38
- example : ${{ fromJSON(needs.get-build-matrix.outputs.examples ) }}
38
+ example : ${{ fromJSON(needs.get-build-matrix.outputs.examples_json ) }}
39
39
fail-fast : false
40
40
uses : ./.github/workflows/_example-workflow.yml
41
41
with :
You can’t perform that action at this time.
0 commit comments