File tree Expand file tree Collapse file tree 1 file changed +10
-0
lines changed Expand file tree Collapse file tree 1 file changed +10
-0
lines changed Original file line number Diff line number Diff line change @@ -27,11 +27,21 @@ jobs:
27
27
run : |
28
28
examples=($(echo ${EXAMPLES} | tr ',' ' '))
29
29
examples_json=$(printf '%s\n' "${examples[@]}" | sort -u | jq -R '.' | jq -sc '.')
30
+ echo "$examples_json"
30
31
echo "examples_json=$examples_json" >> $GITHUB_OUTPUT
31
32
echo "EXAMPLES=$EXAMPLES" >> $GITHUB_OUTPUT
32
33
echo "TAG=$TAG" >> $GITHUB_OUTPUT
33
34
echo "PUBLISH_TAGS=$PUBLISH_TAGS" >> $GITHUB_OUTPUT
34
35
36
+ check :
37
+ runs-on : ubuntu-latest
38
+ steps :
39
+ - name : Check
40
+ run : |
41
+ echo "EXAMPLES: ${{ env.EXAMPLES }}"
42
+ echo "examples_json: ${{ env.examples_json }}"
43
+ echo "${{ fromJSON(needs.get-build-matrix.outputs.examples_json) }}"
44
+
35
45
build-and-test :
36
46
needs : get-build-matrix
37
47
if : ${{ fromJSON(needs.get-build-matrix.outputs.examples_json).length != 0 }}
You can’t perform that action at this time.
0 commit comments