Skip to content

Commit c42f88a

Browse files
allow image and build to run concurrently
1 parent 9ba3a1f commit c42f88a

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

.github/workflows/build.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ on:
66

77
concurrency:
88
# serialize runs on the default branch
9-
group: ${{ github.event_name == 'push' && github.workflow || github.sha }}
9+
group: ${{ github.event_name == 'push' && github.workflow || github.sha }}${{ github.workflow }}
1010

1111
jobs:
1212
linux:

.github/workflows/image.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ on:
88

99
concurrency:
1010
# serialize runs on the default branch
11-
group: ${{ github.event_name == 'push' && github.workflow || github.sha }}
11+
group: ${{ github.event_name == 'push' && github.workflow || github.sha }}${{ github.workflow }}
1212

1313
jobs:
1414
image:

0 commit comments

Comments
 (0)