Skip to content

Commit

Permalink
ci: Tidy up internal artifact file naming
Browse files Browse the repository at this point in the history
  • Loading branch information
redmushie committed Sep 30, 2023
1 parent 915623f commit b8d6ae4
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 6 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/ci-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -175,7 +175,7 @@ jobs:
python -m esptool \
--chip esp32 \
merge_bin \
-o merged.bin \
-o OpenShock.${{ matrix.board }}.bin \
--flash_mode dio \
--flash_freq 40m \
--flash_size 4MB \
Expand All @@ -187,7 +187,7 @@ jobs:
- name: Upload merged flashable image
uses: actions/upload-artifact@v3
with:
name: merged-firmware_${{ matrix.board }}
path: merged.bin
name: final_${{ matrix.board }}
path: OpenShock.${{ matrix.board }}.bin
retention-days: 1
if-no-files-found: error
8 changes: 5 additions & 3 deletions platformio.ini
Original file line number Diff line number Diff line change
Expand Up @@ -35,15 +35,17 @@ monitor_speed = 115200
[env:fs]
# This exists so we don't build a filesystem per board.

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

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

# https://docs.platformio.org/en/latest/boards/espressif32/lolin_s3.html
[env:lolin-s3]
# SOC:
[env:wemos-lolin-s3]
board = lolin_s3

# TODO:
Expand Down

0 comments on commit b8d6ae4

Please sign in to comment.