Skip to content

Commit 064b727

Browse files
committed
Concurrency review / tweaks
1 parent 48944bf commit 064b727

2 files changed

Lines changed: 3 additions & 1 deletion

File tree

.github/workflows/deployRelease.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,7 @@ on:
1919
default: false
2020
type: boolean
2121

22+
# Run all release builds one-by-one, but never cancel a release build due to another one.
2223
concurrency:
2324
group: deploy-release
2425
cancel-in-progress: false

.github/workflows/deploySnapshot.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,8 +17,9 @@ on:
1717
default: ''
1818
type: string
1919

20+
# Debounce builds by branch. Newer runs from a branch will cancel the current run and start over.
2021
concurrency:
21-
group: deploy-snapshot
22+
group: deploy-snapshot-${{ github.ref }}
2223
cancel-in-progress: true
2324

2425
jobs:

0 commit comments

Comments
 (0)