fix echo FQBNS in script (#8100)
This commit is contained in:
parent
b9cc0e69a4
commit
e9c131a9d5
2 changed files with 2 additions and 2 deletions
2
.github/scripts/find_new_boards.sh
vendored
2
.github/scripts/find_new_boards.sh
vendored
|
|
@ -86,5 +86,5 @@ then
|
|||
echo $json_matrix
|
||||
echo "FQBNS=${json_matrix}" >> $GITHUB_ENV
|
||||
else
|
||||
echo "FQBNS=''" >> $GITHUB_ENV
|
||||
echo "FQBNS=" >> $GITHUB_ENV
|
||||
fi
|
||||
2
.github/workflows/boards.yml
vendored
2
.github/workflows/boards.yml
vendored
|
|
@ -30,7 +30,7 @@ jobs:
|
|||
test-boards:
|
||||
needs: find-boards
|
||||
runs-on: ubuntu-latest
|
||||
if: ${{ needs.find-boards.outputs.fqbns != '' }}
|
||||
if: needs.find-boards.outputs.fqbns != ''
|
||||
|
||||
env:
|
||||
REPOSITORY: |
|
||||
|
|
|
|||
Loading…
Reference in a new issue