add TZT to and remove bit from action build and release script
What changed, and why it matters
This commit simply updates the list of supported hardware devices in the project's automated build system and release-signing script. It removes one device ('bit') and adds another ('tzt'). There is no code change that affects security, cryptography, or user-facing behavior.
No security action required. Treat as routine device support maintenance.
Security signals we found
No strong security signals were identified.
Evidence from the diff
The diff modifies two files: .github/workflows/build.yml and sign_release.py. Both changes update the DEVICES matrix/list used for CI builds and release artifact signing. maixpy_bit is removed and maixpy_tzt is added. No firmware logic, cryptographic operations, or access controls are changed.
Changed components
.github/workflows/build.ymlsign_release.pyInspect captured patch +2 / −2
diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml
index dd7f29d..4e460b6 100644
--- a/.github/workflows/build.yml
+++ b/.github/workflows/build.yml
@@ -11,7 +11,7 @@ jobs:
build:
strategy:
matrix:
- device: [maixpy_m5stickv, maixpy_amigo, maixpy_bit, maixpy_dock, maixpy_yahboom, maixpy_cube, maixpy_wonder_mv]
+ device: [maixpy_m5stickv, maixpy_amigo, maixpy_dock, maixpy_yahboom, maixpy_cube, maixpy_wonder_mv, maixpy_tzt]
runs-on: ubuntu-latest
services:
registry:
diff --git a/sign_release.py b/sign_release.py
index 1884b7d..c37b381 100644
--- a/sign_release.py
+++ b/sign_release.py
@@ -35,11 +35,11 @@ import subprocess
DEVICES = [
"maixpy_m5stickv",
"maixpy_amigo",
- "maixpy_bit",
"maixpy_dock",
"maixpy_yahboom",
"maixpy_cube",
"maixpy_wonder_mv",
+ "maixpy_tzt",
]
Why this scored 15/100
Community notes
Notes can correct, qualify, or add evidence to the AI analysis. Every note shown here has been validated by a human moderator.
The AI analysis stands alone for now. Submit a note if you can add evidence or important context.