We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 48944bf commit 064b727Copy full SHA for 064b727
2 files changed
.github/workflows/deployRelease.yml
@@ -19,6 +19,7 @@ on:
19
default: false
20
type: boolean
21
22
+# Run all release builds one-by-one, but never cancel a release build due to another one.
23
concurrency:
24
group: deploy-release
25
cancel-in-progress: false
.github/workflows/deploySnapshot.yml
@@ -17,8 +17,9 @@ on:
17
default: ''
18
type: string
+# Debounce builds by branch. Newer runs from a branch will cancel the current run and start over.
- group: deploy-snapshot
+ group: deploy-snapshot-${{ github.ref }}
cancel-in-progress: true
jobs:
0 commit comments