We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 49ccf57 + 2a74d3c commit 9530182Copy full SHA for 9530182
3 files changed
.github/workflows/deploy-to-pages.yml
@@ -16,9 +16,9 @@ permissions:
16
pages: write
17
id-token: write
18
19
-# Allow only one concurrent deployment
+# Allow only one concurrent deployment per branch
20
concurrency:
21
- group: "pages"
+ group: "pages-${{ github.head_ref || github.ref }}"
22
cancel-in-progress: true
23
24
jobs:
.github/workflows/deploy.yml
.github/workflows/publish.yml
@@ -4,6 +4,11 @@ on:
4
release:
5
types: [created]
6
7
+# Allow only one concurrent release build
8
+concurrency:
9
+ group: "publish-${{ github.ref }}"
10
+ cancel-in-progress: true
11
+
12
13
build-and-publish:
14
runs-on: ubuntu-latest
0 commit comments