From 4349aee7d1e8ea3583dfdd3b8e5000896fd2de6f Mon Sep 17 00:00:00 2001 From: yu seungbeom Date: Mon, 26 Aug 2024 02:03:01 +0900 Subject: [PATCH] =?UTF-8?q?Fix:=20workflow=EC=97=90=20log=20=EC=B6=94?= =?UTF-8?q?=EA=B0=80?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .github/workflows/deploy.yml | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/.github/workflows/deploy.yml b/.github/workflows/deploy.yml index bd69ce2..7a3a9f2 100644 --- a/.github/workflows/deploy.yml +++ b/.github/workflows/deploy.yml @@ -42,7 +42,9 @@ jobs: - name: Build Project for Develop if: github.ref == 'refs/heads/dev' - run: CI=false npm run build:dev + run: | + echo "Building project with API URL: ${{ secrets.REACT_APP_API_URL_DEV }} + CI=false npm run build:dev - name: Deploy to S3 for Development if: github.ref == 'refs/heads/dev' @@ -61,7 +63,9 @@ jobs: - name: Build Project for Production if: github.ref == 'refs/heads/main' - run: CI=false npm run build:prod + run: | + echo "Building project with API URL: ${{ secrets.REACT_APP_API_URL_PROD }} + CI=false npm run build:prod - name: Deploy to S3 for Production if: github.ref == 'refs/heads/main'