Skip to content

Commit e42c6de

Browse files
committed
Add concurrency to docker build
1 parent 225e815 commit e42c6de

File tree

2 files changed

+7
-0
lines changed

2 files changed

+7
-0
lines changed

.github/workflows/1-build-projects.yml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -33,6 +33,10 @@ jobs:
3333
build_docker:
3434
runs-on: ubuntu-latest
3535

36+
concurrency:
37+
group: ${{ github.ref }}
38+
cancel-in-progress: true
39+
3640
steps:
3741
- uses: actions/checkout@v3
3842
with:

.github/workflows/2-release-bot.yml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -46,6 +46,9 @@ jobs:
4646

4747
build_docker:
4848
runs-on: ubuntu-latest
49+
concurrency:
50+
group: ${{ github.ref }}
51+
cancel-in-progress: true
4952
steps:
5053
- uses: actions/checkout@v3
5154
with:

0 commit comments

Comments
 (0)