File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -367,7 +367,7 @@ jobs:
367367 examples_matrix :
368368 runs-on : ubuntu-latest
369369 outputs :
370- examples_matrix : $$ {{ steps.list_examples.outputs.examples_matrix }}
370+ examples_matrix : ${{ steps.list_examples.outputs.examples_matrix }}
371371 steps :
372372 - name : Check out code
373373 uses : actions/checkout@v5
@@ -376,7 +376,7 @@ jobs:
376376 id : list_examples
377377 run : |
378378 echo -n 'examples_matrix=' >> $GITHUB_OUTPUT
379- find "$PWD" -mindepth 1 -type d | jq -R -s -c 'split("\n") | map(select(length > 0))' >> $GITHUB_OUTPUT
379+ find "$PWD/docs/examples " -mindepth 1 -type d | jq -R -s -c 'split("\n") | map(select(length > 0))' >> $GITHUB_OUTPUT
380380
381381 test_doc_examples :
382382 name : Documented example tests
You can’t perform that action at this time.
0 commit comments