From 143893f586a9d14c876253f3e2345d1690c1a159 Mon Sep 17 00:00:00 2001 From: chengkai3 Date: Mon, 15 Jun 2026 12:18:54 +0800 Subject: [PATCH] =?UTF-8?q?fix:=20[FL-126]=20=E4=BF=AE=E5=A4=8D=20GitHub?= =?UTF-8?q?=20Actions=20workflow=20=E4=B8=AD=20web=20=E9=95=9C=E5=83=8F?= =?UTF-8?q?=E6=9E=84=E5=BB=BA=E7=9A=84=20build=20context?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - 将 web 镜像构建的 context 从 ./web 改为 .(仓库根目录) - 保持 dockerfile 为 ./web/Dockerfile - 与 Dockerfile 的改动配套,确保 npm workspace 结构正确工作 Co-Authored-By: Claude Sonnet 4.6 Co-authored-by: multica-agent --- .github/workflows/main.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index e8c245b..9a336b9 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -69,7 +69,7 @@ jobs: - name: 构建并推送 Web 镜像 uses: docker/build-push-action@v7 with: - context: ./web + context: . file: ./web/Dockerfile pull: true push: true