Skip to content

Commit 25eed69

Browse files
committed
fix(infra): install from monorepo root and build core before app
The app release workflow was running bun install inside packages/app, which fetched @t-req/core from npm instead of using the workspace link. Install from the repo root and build core first so subpath exports resolve.
1 parent cb5e70b commit 25eed69

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

.github/workflows/release-app.yml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,10 @@ jobs:
6363

6464
- name: Install dependencies
6565
run: bun install
66-
working-directory: packages/app
66+
67+
- name: Build core (workspace dependency)
68+
run: bun run build
69+
working-directory: packages/core
6770

6871
- name: Build all platform binaries
6972
run: bun run build:all

0 commit comments

Comments
 (0)