Skip to content

Commit e9c131a

Browse files
authored
fix echo FQBNS in script (espressif#8100)
1 parent b9cc0e6 commit e9c131a

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

.github/scripts/find_new_boards.sh

+1-1
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=" >> $GITHUB_ENV
9090
fi

.github/workflows/boards.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ jobs:
3030
test-boards:
3131
needs: find-boards
3232
runs-on: ubuntu-latest
33-
if: ${{ needs.find-boards.outputs.fqbns != '' }}
33+
if: needs.find-boards.outputs.fqbns != ''
3434

3535
env:
3636
REPOSITORY: |

0 commit comments

Comments
 (0)