Skip to content

Commit 1e70be9

Browse files
committed
Add debug print
1 parent b9cc0e6 commit 1e70be9

File tree

1 file changed

+10
-1
lines changed

1 file changed

+10
-1
lines changed

.github/workflows/boards.yml

Lines changed: 10 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,10 +27,19 @@ jobs:
2727
run:
2828
bash .github/scripts/find_new_boards.sh ${{ github.repository }} ${{github.event.number}}
2929

30+
debug:
31+
needs: find-boards
32+
runs-on: ubuntu-latest
33+
34+
steps:
35+
- name: Print FQBNS
36+
run:
37+
echo ${{ needs.find-boards.outputs.fqbns }}
38+
3039
test-boards:
3140
needs: find-boards
3241
runs-on: ubuntu-latest
33-
if: ${{ needs.find-boards.outputs.fqbns != '' }}
42+
if: needs.find-boards.outputs.fqbns != ''
3443

3544
env:
3645
REPOSITORY: |

0 commit comments

Comments
 (0)