Skip to content

Commit

Permalink
CI: Change the filename output so it uses the board name instead of t…
Browse files Browse the repository at this point in the history
…he board platform (#359)

Change the filename output so it uses the board name instead of the board platform
  • Loading branch information
loucass003 authored Nov 8, 2024
1 parent a4a9778 commit 50fa801
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ci/build.py
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ def __init__(self, platform: str, board: str, platformio_board: str) -> None:
self.platformio_board = platformio_board

def filename(self) -> str:
return f"{self.platformio_board}.bin"
return f"{self.board}-firmware.bin"

def __str__(self) -> str:
return f"{self.platform}@{self.board}"
Expand Down

0 comments on commit 50fa801

Please sign in to comment.