fix(eas): dejar de construir Android preview en cada push a main#108
Merged
Merged
Conversation
Every push to main was triggering an EAS Android preview build via main-deployments.yml, burning build credits/CI minutes. Keep web deploy on push; move Android preview to a manual workflow_dispatch workflow (same pattern as iOS preview and development-android). Co-authored-by: Ivan Romero Matallana <develop-iro@users.noreply.github.com>
develop-iro
marked this pull request as ready for review
July 16, 2026 16:57
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Problema
El workflow EAS
main-deployments.ymllanzaba un build Android preview en cada push amain. Eso consume créditos de EAS Build (y minutos de CI/CD Workflows) aunque el cambio sea solo JS/web, y es lo que está subiendo el coste de la automatización.Cambio
main: solo deploy web a EAS Hosting (alias: inversora). Sin build nativo..eas/workflows/preview-android.yml(workflow_dispatch), alineado con iOS preview y condevelopment-android.yml.AGENTS.md,docs/release-checklist.md,docs/architecture/stack-decisions.md.Cómo generar un preview Android cuando haga falta
pnpm run build:preview:androidNota
Si más adelante queréis automatizar de forma barata (solo cuando cambie código nativo), se puede valorar fingerprint + EAS Update; hoy no está cableado en el repo.