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 script and release-signing script. It removes one device ('bit') and adds another ('tzt'). There is no security-relevant change in the code itself.
No security action needed. Review as normal 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. In both, the maixpy_bit device entry is removed and maixpy_tzt is added. This is a routine device-support maintenance change with no functional, cryptographic, or workflow-security modifications.
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.