Skip to content

Commit

Permalink
test: attempt without all boards
Browse files Browse the repository at this point in the history
  • Loading branch information
Otrebor671 committed Feb 20, 2025
1 parent 8d044d7 commit 65f1c1d
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 4 deletions.
12 changes: 9 additions & 3 deletions .github/workflows/builds.yml
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ jobs:
- name: Generate ChangeLog
run: ./change change

- name: Upload release artifact
- name: Upload CHANGELOG artifact
uses: actions/upload-artifact@v4
with:
name: CHANGELOG
Expand All @@ -69,7 +69,13 @@ jobs:
uses: actions/download-artifact@v4
with:
name: CHANGELOG
path: ./release/
path: ./

- name: Read CHANGELOG
id: changelog
run: |
changelog_content=$(cat ./CHANGELOG.md)
echo "CHANGELOG_CONTENT=$changelog_content" >> $GITHUB_ENV
- name: Release Firmware
uses: ncipollo/release-action@v1
Expand All @@ -80,7 +86,7 @@ jobs:
allowUpdates: true
draft: true
body: |
$(cat ./release/CHANGELOG.md)
${{ env.CHANGELOG_CONTENT }}
# Flashing release
## Minino
### Table for [ESP Tool](https://espressif.github.io/esptool-js/)
Expand Down
2 changes: 1 addition & 1 deletion firmware/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ all: flash monitor
binmerge:
cd build-minino && esptool.py --chip esp32c6 merge_bin -o MininoBin.bin @flash_args

BOARDS = minino bsides dragonjar ekoparty bugcon
BOARDS = minino

mergebins:
$(foreach board, $(BOARDS), cd build-$(board) && esptool.py --chip esp32c6 merge_bin -o $(board)Bin.bin @flash_args; cd ..;)
Expand Down

0 comments on commit 65f1c1d

Please sign in to comment.