We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8edd02f commit 8aec931Copy full SHA for 8aec931
.github/workflows/targets.yml
@@ -19,7 +19,7 @@ jobs:
19
generate-matrix:
20
runs-on: ubuntu-latest
21
outputs:
22
- matrix: ${{ steps.convert.outputs.matrix }}
+ matrix: ${{ steps.extract.outputs.matrix }}
23
24
steps:
25
- uses: actions/checkout@v4
@@ -47,6 +47,6 @@ jobs:
47
# Referenced: https://unix.stackexchange.com/a/278377
48
# Referenced: https://github.com/jqlang/jq/issues/563
49
- name: Extract targets
50
- id: targets
+ id: extract
51
run: |
52
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