From 91caf81069ec2f0e32a3a84fe055deb9fc0f7293 Mon Sep 17 00:00:00 2001 From: ejclaw Date: Sat, 11 Apr 2026 13:57:05 +0900 Subject: [PATCH] fix: run room migration during deploy --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index 898c368..ee64dad 100644 --- a/package.json +++ b/package.json @@ -11,7 +11,7 @@ "build:runners": "bun run install:runners && bun run --cwd runners/shared build && bun run --cwd runners/agent-runner build && bun run --cwd runners/codex-runner build", "build:all": "bun run build && bun run build:runners", "build:runtime": "bun run build:all", - "deploy": "git pull --ff-only && bun run build:all && systemctl --user restart ejclaw", + "deploy": "git pull --ff-only && bun run build:all && bun setup/index.ts --step migrate-room-registrations && systemctl --user restart ejclaw", "start": "bun dist/index.js", "dev": "bun --watch src/index.ts", "test": "vitest run",