Skip to content

Commit

Permalink
Update deploy-frontend.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
mataeLee authored Oct 9, 2024
1 parent 1506d94 commit e57e65a
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/deploy-frontend.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ jobs:
AWS_EC2_DNS: ${{ secrets.AWS_EC2_DNS }}
AWS_ACCESS_KEY_ID: ${{ secrets.AWS_ACCESS_KEY_ID }}
AWS_SECRET_ACCESS_KEY: ${{ secrets.AWS_SECRET_ACCESS_KEY }}
PROPERTIES_JSON: ${{ secrets.PROPERTIES_JSON }}
PROPERTY_JSON: ${{ secrets.PROPERTY_JSON }}
NODE_ENV: production

steps:
Expand Down Expand Up @@ -53,10 +53,10 @@ jobs:
run: |
npm install --include=dev
# properties.json 파일 생성
- name: Create properties.json
# property.json 파일 생성
- name: Create property.json
run: |
echo -e "${{ env.PROPERTIES_JSON }}" > ./src/configs/property.json
echo -e "${{ env.PROPERTY_JSON }}" > ./src/configs/property.json
# React 앱 빌드
- name: Build the React app
Expand Down

0 comments on commit e57e65a

Please sign in to comment.