You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
CI workflows currently duplicate build logic that also lives in the editor's Export Build path. Refactor .github/workflows/android.yml and package.yml to invoke the same scaffolded scripts emitted by octarine init-build-scripts (#49) — the editor (#74) and CI then share one build code path. Single source of truth: whatever CI runs, a dev can run locally by hand.
Scope:
Replace inline build steps in android.yml / package.yml with calls into the scaffolded scripts/ (build, bake/manifest, package)
Keep CI-only concerns (matrix, secrets, artifact upload) in YAML; push buildable logic into the scripts
P2.
CI workflows currently duplicate build logic that also lives in the editor's Export Build path. Refactor
.github/workflows/android.ymlandpackage.ymlto invoke the same scaffolded scripts emitted byoctarine init-build-scripts(#49) — the editor (#74) and CI then share one build code path. Single source of truth: whatever CI runs, a dev can run locally by hand.Scope:
android.yml/package.ymlwith calls into the scaffoldedscripts/(build, bake/manifest, package)Depends on #49 (scaffolder), #74 (export build). Parent: #45.