Skip to content

Commit 8aec931

Browse files
committed
ci: Fix referencing wrong job ID
1 parent 8edd02f commit 8aec931

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.github/workflows/targets.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ jobs:
1919
generate-matrix:
2020
runs-on: ubuntu-latest
2121
outputs:
22-
matrix: ${{ steps.convert.outputs.matrix }}
22+
matrix: ${{ steps.extract.outputs.matrix }}
2323

2424
steps:
2525
- uses: actions/checkout@v4
@@ -47,6 +47,6 @@ jobs:
4747
# Referenced: https://unix.stackexchange.com/a/278377
4848
# Referenced: https://github.com/jqlang/jq/issues/563
4949
- name: Extract targets
50-
id: targets
50+
id: extract
5151
run: |
5252
echo "matrix=$(sed -n "s/^\[env:\(.*\)]$/\1/p" platformio.ini | jq --raw-input --slurp -c '{ board: split("\n") | [ .[] | select(length > 0) ] }')" >> $GITHUB_OUTPUT

0 commit comments

Comments
 (0)