Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
  • Loading branch information
mrbonk97 committed Jul 17, 2024
2 parents d1b77bc + fb84cca commit 8061e85
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,14 +24,14 @@ jobs:
run: npm install

- name: Build # React Build
run: vite build
run: npm run build

- name: List build directory contents # 확인을 위해 빌드 디렉토리 내용 출력
run: ls -alh build
run: ls -alh dist

- name: Deploy # S3에 배포하기
env:
AWS_ACCESS_KEY_ID: ${{ secrets.AWS_ACCESS_KEY_ID }}
AWS_SECRET_ACCESS_KEY: ${{ secrets.AWS_SECRET_ACCESS_KEY }}
run: |
aws s3 sync build s3://yebang-bucket --region ap-northeast-2
aws s3 sync dist s3://yebang-bucket --region ap-northeast-2

0 comments on commit 8061e85

Please sign in to comment.