Skip to content

Commit

Permalink
Merge pull request #119 from 100-hours-a-week/feature/kevin
Browse files Browse the repository at this point in the history
Fix: workflow에 log 추가
  • Loading branch information
lucy726j authored Aug 25, 2024
2 parents 6e43bd8 + 4349aee commit 76eb70c
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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'
Expand All @@ -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'
Expand Down

0 comments on commit 76eb70c

Please sign in to comment.