CI: Change the filename output so it uses the board name instead of the board platform (#359)

Change the filename output so it uses the board name instead of the board platform
This commit is contained in:
lucas lelievre
2024-11-08 15:43:24 +01:00
committed by GitHub
parent a4a9778f62
commit 50fa801653

View File

@@ -22,7 +22,7 @@ class DeviceConfiguration:
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}"