From 055783d4325e3a1f4860611110bb1274be4fd5f1 Mon Sep 17 00:00:00 2001 From: Dulyawat Khamkaew <6430127621@student.chula.ac.th> Date: Thu, 31 Oct 2024 16:08:06 +0700 Subject: [PATCH] fix build arg --- .github/workflows/build-web.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/build-web.yaml b/.github/workflows/build-web.yaml index a2f73440..83242f68 100644 --- a/.github/workflows/build-web.yaml +++ b/.github/workflows/build-web.yaml @@ -65,7 +65,7 @@ jobs: run: | tags="${{ steps.tags.outputs.tags }}" for tag in $(echo $tags | tr ',' '\n'); do - docker build . -t ghcr.io/$tag -f ./apps/web/Dockerfile + docker build . -t ghcr.io/$tag -f ./apps/web/Dockerfile \ --build-arg NEXT_PUBLIC_API_SERVER_URL=${{ secrets.NEXT_PUBLIC_API_SERVER_URL }} done