Skip to content

Commit e9bfd52

Browse files
RookieANDclaude
andcommitted
fix: 동시 배포 방지를 위한 concurrency 설정 추가
- production-deploy.yml과 development-deploy.yml에 concurrency 그룹 추가 - 같은 저장소에 대한 배포는 순차적으로 실행되도록 설정 - cancel-in-progress: false로 기존 배포가 완료될 때까지 대기 Co-Authored-By: Claude (us.anthropic.claude-sonnet-4-5-20250929-v1:0) <noreply@anthropic.com>
1 parent fefcb76 commit e9bfd52

File tree

2 files changed

+8
-0
lines changed

2 files changed

+8
-0
lines changed

.github/workflows/development-deploy.yml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,10 @@ on:
2222
default: true
2323
type: boolean
2424

25+
concurrency:
26+
group: deploy-${{ github.repository }}
27+
cancel-in-progress: false
28+
2529
jobs:
2630
build-image:
2731
runs-on: ubuntu-latest

.github/workflows/production-deploy.yml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,10 @@ on:
2222
default: true
2323
type: boolean
2424

25+
concurrency:
26+
group: deploy-${{ github.repository }}
27+
cancel-in-progress: false
28+
2529
jobs:
2630
build-image:
2731
runs-on: ubuntu-latest

0 commit comments

Comments
 (0)