Skip to content

Commit 5345c14

Browse files
committed
Fix concurrency in workflow files
1 parent 9343192 commit 5345c14

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

.github/workflows/publish-v1-dev.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ jobs:
66
push_to_registry:
77

88
concurrency:
9-
group: ${{ github.ref }}
9+
group: ${{ github.ref }}-dev
1010
cancel-in-progress: true
1111

1212
name: Push development docker image

.github/workflows/publish-v1-prod-manual.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ jobs:
99
runs-on: ubuntu-latest
1010

1111
concurrency:
12-
group: ${{ github.ref }}
12+
group: ${{ github.ref }}-prod
1313
cancel-in-progress: true
1414

1515
steps:
@@ -52,7 +52,7 @@ jobs:
5252
runs-on: ubuntu-latest
5353

5454
concurrency:
55-
group: ${{ github.ref }}
55+
group: ${{ github.ref }}-sandbox
5656
cancel-in-progress: true
5757

5858
steps:

0 commit comments

Comments
 (0)