Skip to content

Commit 87dee24

Browse files
committed
Remove superfluous $ added helpfully by code.
1 parent deb4ffd commit 87dee24

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.github/workflows/build-test-publish.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff 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

0 commit comments

Comments
 (0)