Skip to content

Commit ee41b1f

Browse files
vintaclaude
andcommitted
chore: add concurrency control to publish workflow
- Add concurrency group with cancel-in-progress enabled - Prevents multiple publish runs for the same ref - Matches configuration used in CI workflow 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude <[email protected]>
1 parent 0986c66 commit ee41b1f

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

.github/workflows/publish.yml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,10 @@ on:
88
permissions:
99
contents: read
1010

11+
concurrency:
12+
group: ${{ github.workflow }}-${{ github.ref }}
13+
cancel-in-progress: true
14+
1115
jobs:
1216
publish:
1317
runs-on: ubuntu-latest

0 commit comments

Comments
 (0)