Skip to content

Commit 5ddf1e2

Browse files
committed
Add esp32s3 devkitc-1 N8, and XIAO S3 sense to build targets
1 parent 940d6c6 commit 5ddf1e2

File tree

1 file changed

+5
-3
lines changed

1 file changed

+5
-3
lines changed

.github/workflows/release-offline.yml

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -96,6 +96,8 @@ jobs:
9696
"qtpy_esp32s2",
9797
"feather_esp32s3_reverse_tft",
9898
"qtpy_esp32s3_n4r2",
99+
"esp32s3_devkitc_1_n8",
100+
"xiao_esp32s3",
99101
]
100102
steps:
101103
- uses: actions/setup-python@v5
@@ -259,9 +261,9 @@ jobs:
259261
name: Create new_flash_args file from flash_args with added app bin + output file
260262
run: |
261263
# Create new_flash_args with esptool parameters first and output file
262-
echo "--flash-mode ${{fromJson(steps.get_board_json.outputs.boardJson).esptool.flashMode}}" > new_flash_args
263-
echo "--flash-freq ${{fromJson(steps.get_board_json.outputs.boardJson).esptool.flashFreq}}" >> new_flash_args
264-
echo "--flash-size ${{fromJson(steps.get_board_json.outputs.boardJson).esptool.flashSize}}" >> new_flash_args
264+
echo "--flash-mode ${{fromJson(steps.get_board_json.outputs.boardJson).esptool.flashMode || 'keep'}}" > new_flash_args
265+
echo "--flash-freq ${{fromJson(steps.get_board_json.outputs.boardJson).esptool.flashFreq || 'keep'}}" >> new_flash_args
266+
echo "--flash-size ${{fromJson(steps.get_board_json.outputs.boardJson).esptool.flashSize || 'keep'}}" >> new_flash_args
265267
echo "-o wippersnapper.${{ matrix.arduino-platform }}.${{ env.WS_VERSION }}.combined.bin" >> new_flash_args
266268
267269
# Append flash_args content to new_flash_args, skipping the first line

0 commit comments

Comments
 (0)