From f8c8aeed4062bcb0cf668de17b218f222fbc24fa Mon Sep 17 00:00:00 2001 From: amaliadwiy Date: Fri, 22 May 2026 17:23:48 +0800 Subject: [PATCH] fix: deploy tool push ke remote build bukan origin Sebelumnya push ke origin (Gitea) dengan branch build/stg, seharusnya ke remote build (GitHub) branch stg. --- scripts/mcp-deploy.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/mcp-deploy.ts b/scripts/mcp-deploy.ts index 5b9c4f0..768dae7 100644 --- a/scripts/mcp-deploy.ts +++ b/scripts/mcp-deploy.ts @@ -150,7 +150,7 @@ server.tool( } log.push('✅ Committed') - const push = await sh(['git', 'push', 'origin', 'HEAD:build/stg']) + const push = await sh(['git', 'push', 'build', 'HEAD:stg']) if (!push.ok) { return { content: [{ type: 'text', text: `❌ git push gagal:\n${push.err}` }] } }