fix(ci): 修正 docker build context 以支援 monorepo 編譯
Some checks failed
E2E Health Check / e2e-health (push) Has been cancelled
CD Pipeline / build-and-deploy (push) Has been cancelled

This commit is contained in:
OG T
2026-03-29 22:46:35 +08:00
parent 9535e8b03a
commit 038ca67009

View File

@@ -39,7 +39,8 @@ jobs:
- name: Build and Push API
uses: docker/build-push-action@v5
with:
context: ./apps/api
context: .
file: ./apps/api/Dockerfile
push: true
tags: |
${{ env.HARBOR }}/awoooi/api:${{ github.sha }}
@@ -54,7 +55,8 @@ jobs:
- name: Build and Push Web
uses: docker/build-push-action@v5
with:
context: ./apps/web
context: .
file: ./apps/web/Dockerfile
push: true
tags: |
${{ env.HARBOR }}/awoooi/web:${{ github.sha }}