Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 3 additions & 5 deletions .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,16 +14,14 @@ jobs:
runs-on: ubuntu-latest

steps:
# 1. 저장소 체크아웃
- name: Checkout repository
uses: actions/checkout@v4

# 1. pnpm 설치 (package.json 의 packageManager 버전을 자동 인식)
- name: Setup pnpm
uses: pnpm/action-setup@v4
with:
version: 10.13.1 # packageManager에 맞춘 pnpm 버전

# 2. Node.js + pnpm 설치
# 2. Node.js 설치 (pnpm 캐시 사용 가능)
- name: Setup Node.js
uses: actions/setup-node@v4
with:
Expand All @@ -48,7 +46,7 @@ jobs:
aws-secret-access-key: ${{ secrets.AWS_SECRET_ACCESS_KEY }}
aws-region: ${{ secrets.AWS_REGION }}

# 5. 빌드 결과물을 S3에 업로드
# 5. S3 업로드
- name: Sync files to S3
run: |
aws s3 sync ./dist s3://${{ secrets.AWS_S3_BUCKET }} \
Expand Down