Skip to content

Commit 88be15c

Browse files
Merge pull request #204 from DeepDirect/develop
[deploy] 배포 테스트 중
2 parents b2914f5 + 89fe4bd commit 88be15c

File tree

1 file changed

+3
-5
lines changed

1 file changed

+3
-5
lines changed

.github/workflows/deploy.yml

Lines changed: 3 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -14,16 +14,14 @@ jobs:
1414
runs-on: ubuntu-latest
1515

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

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

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

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

0 commit comments

Comments
 (0)