ci: 배포 워크플로우에서 stage 배포 및 ALIAS_DOMAINS 제거#73
Conversation
Walkthrough이 변경사항은 GitHub Actions의 Vercel 배포 워크플로우를 단순화하여, Changes
Sequence Diagram(s)sequenceDiagram
participant Developer
participant GitHub Actions
participant Vercel
Developer->>GitHub Actions: main 브랜치에 push
GitHub Actions->>Vercel: 프로덕션 배포 실행
Note over GitHub Actions: stage 브랜치 프리뷰 배포 없음
Assessment against linked issues
Possibly related PRs
Suggested reviewers
Poem
Thanks for using CodeRabbit! It's free for OSS, and your support helps us grow. If you like it, consider giving us a shout-out. 🪧 TipsChatThere are 3 ways to chat with CodeRabbit:
SupportNeed help? Create a ticket on our support page for assistance with any issues or questions. Note: Be mindful of the bot's finite context window. It's strongly recommended to break down tasks such as reading entire modules into smaller chunks. For a focused discussion, use review comments to chat about specific files and their changes, instead of using the PR comments. CodeRabbit Commands (Invoked using PR comments)
Other keywords and placeholders
CodeRabbit Configuration File (
|
|
🎨 Storybook Preview: https://685a32a1c0bbd269fdb67af4-gyaeibmief.chromatic.com/ |
There was a problem hiding this comment.
Actionable comments posted: 0
🧹 Nitpick comments (2)
.github/workflows/deploy.yml (2)
3-6:if조건이 브랜치 필터와 중복됩니다
on.push.branches가 이미main으로 한정되어 있으므로, 잡 레벨의
if: github.ref == 'refs/heads/main'조건은 기능적으로 동일한 중복입니다.
제거해도 동작에는 영향이 없으며 YAML이 조금 더 간결해집니다.
8-24: 동시 배포 충돌 방지를 위한concurrency설정 고려
main브랜치에 잦은 push가 발생할 경우, 이전 배포가 완료되기 전에 새 배포가 시작돼 Vercel 빌드 대기열이 길어질 수 있습니다.
YAML 최상위에 다음과 같이 추가하면 최신 커밋만 빌드되도록 제어할 수 있습니다.concurrency: group: vercel-production-${{ github.ref }} cancel-in-progress: true
📜 Review details
Configuration used: CodeRabbit UI
Review profile: CHILL
Plan: Pro
📒 Files selected for processing (1)
.github/workflows/deploy.yml(1 hunks)
⏰ Context from checks skipped due to timeout of 90000ms. You can increase the timeout in your CodeRabbit configuration to a maximum of 15 minutes (900000ms). (2)
- GitHub Check: test
- GitHub Check: storybook-preview
🔇 Additional comments (1)
.github/workflows/deploy.yml (1)
15-24: ALIAS_DOMAINS 삭제 후 커스텀 도메인 자동 연결 여부를 재확인하세요
ALIAS_DOMAINS를 제거하면 Vercel 프로젝트에 등록된 커스텀 도메인이 자동으로 프로덕션 배포에 연결되지 않을 수 있습니다.
• 프로젝트 설정에서 도메인이Production환경에 매핑돼 있는지 확인 바랍니다.
• 필요하다면domains입력(예:VERCEL_PROJECT_DOMAIN)으로 대체할 수 있습니다.
wkdtnqls0506
left a comment
There was a problem hiding this comment.
무료의 삶... 슬픕니다.... 하지만 가능성은 봤으니... 의의를 둡시다....✨✨✨
✅ 이슈 번호
close #70
🪄 작업 내용 (변경 사항)
📸 스크린샷
💡 설명
🗣️ 리뷰어에게 전달 사항
📍 트러블 슈팅
Summary by CodeRabbit