Skip to content

Commit 436b279

Browse files
committed
Set fqbns to none if no boards found
1 parent 1e70be9 commit 436b279

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

.github/scripts/find_new_boards.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -86,5 +86,5 @@ then
8686
echo $json_matrix
8787
echo "FQBNS=${json_matrix}" >> $GITHUB_ENV
8888
else
89-
echo "FQBNS=''" >> $GITHUB_ENV
89+
echo "FQBNS='none'" >> $GITHUB_ENV
9090
fi

.github/workflows/boards.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ jobs:
3939
test-boards:
4040
needs: find-boards
4141
runs-on: ubuntu-latest
42-
if: needs.find-boards.outputs.fqbns != ''
42+
if: needs.find-boards.outputs.fqbns != 'none'
4343

4444
env:
4545
REPOSITORY: |

0 commit comments

Comments
 (0)