build(release): move Android bundle publishing into GoReleaser

- build the Android universal bundle from GoReleaser hooks
- attach the bundle as a release asset
- remove the separate post-release upload step
- simplify Make targets around cross-platform builds
This commit is contained in:
wenjie
2026-04-13 11:52:35 +08:00
parent ea2107e8a9
commit d73a0e89b4
15 changed files with 18 additions and 102 deletions
-7
View File
@@ -187,9 +187,6 @@ make build-launcher
# Compila i binari core per tutte le piattaforme gestite dal Makefile
make build-all
# Compila gli artefatti di release impacchettati separatamente dagli output principali di GoReleaser
make build-release-artifacts
# Compila per Raspberry Pi Zero 2 W (32-bit: make build-linux-arm; 64-bit: make build-linux-arm64)
make build-pi-zero
@@ -197,10 +194,6 @@ make build-pi-zero
make install
```
`make build-all` compila i binari core di `picoclaw` per tutte le piattaforme gestite dal Makefile.
`make build-release-artifacts` compila gli artefatti di release impacchettati separatamente dagli output principali di GoReleaser.
**Raspberry Pi Zero 2 W:** Usa il binario che corrisponde al tuo OS: Raspberry Pi OS 32-bit -> `make build-linux-arm`; 64-bit -> `make build-linux-arm64`. Oppure esegui `make build-pi-zero` per compilare entrambi.
## 🚀 Guida Rapida