Skip to content

Commit d2d92d1

Browse files
cablateclaude
andauthored
fix: add concurrency to release workflow to prevent race conditions (#38)
When multiple PRs merge in quick succession, parallel release jobs race on git push and npm publish, causing failures. This serializes release jobs so they queue instead of running concurrently. Co-authored-by: Claude Opus 4.6 <noreply@anthropic.com>
1 parent 93421f6 commit d2d92d1

1 file changed

Lines changed: 4 additions & 0 deletions

File tree

.github/workflows/release.yml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,10 @@ on:
44
push:
55
branches: [main]
66

7+
concurrency:
8+
group: release
9+
cancel-in-progress: false
10+
711
jobs:
812
release:
913
# Skip automated version bump commits

0 commit comments

Comments
 (0)