We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 21039a9 commit 5e77268Copy full SHA for 5e77268
.github/workflows/build-clang-doxy.yml
@@ -158,6 +158,10 @@ jobs:
158
id: get_board_json
159
run: |
160
board_name=${{ matrix.arduino-platform }}
161
+ # Remove '_noota' suffix if present
162
+ board_name=${board_name%_noota}
163
+ # Remove 'wippersnapper_' prefix if present
164
+ board_name=${board_name#wippersnapper_}
165
content=$(cat ws-boards/boards/${board_name//_/-}/definition.json)
166
{
167
echo 'boardJson<<EOF'
0 commit comments