Skip to content

Commit b8d6ae4

Browse files
committed
ci: Tidy up internal artifact file naming
1 parent 915623f commit b8d6ae4

File tree

2 files changed

+8
-6
lines changed

2 files changed

+8
-6
lines changed

.github/workflows/ci-build.yml

+3-3
Original file line numberDiff line numberDiff line change
@@ -175,7 +175,7 @@ jobs:
175175
python -m esptool \
176176
--chip esp32 \
177177
merge_bin \
178-
-o merged.bin \
178+
-o OpenShock.${{ matrix.board }}.bin \
179179
--flash_mode dio \
180180
--flash_freq 40m \
181181
--flash_size 4MB \
@@ -187,7 +187,7 @@ jobs:
187187
- name: Upload merged flashable image
188188
uses: actions/upload-artifact@v3
189189
with:
190-
name: merged-firmware_${{ matrix.board }}
191-
path: merged.bin
190+
name: final_${{ matrix.board }}
191+
path: OpenShock.${{ matrix.board }}.bin
192192
retention-days: 1
193193
if-no-files-found: error

platformio.ini

+5-3
Original file line numberDiff line numberDiff line change
@@ -35,15 +35,17 @@ monitor_speed = 115200
3535
[env:fs]
3636
# This exists so we don't build a filesystem per board.
3737

38-
[env:esp32]
38+
# https://docs.platformio.org/en/stable/boards/espressif32/az-delivery-devkit-v4.html
39+
[env:az-delivery-devkit-v4]
3940
board = az-delivery-devkit-v4
4041

41-
[env:lolin-s2-mini]
4242
# https://docs.platformio.org/en/latest/boards/espressif32/lolin_s2_mini.html
43+
[env:wemos-lolin-s2-mini]
4344
board = lolin_s2_mini
4445

4546
# https://docs.platformio.org/en/latest/boards/espressif32/lolin_s3.html
46-
[env:lolin-s3]
47+
# SOC:
48+
[env:wemos-lolin-s3]
4749
board = lolin_s3
4850

4951
# TODO:

0 commit comments

Comments
 (0)