Skip to content

Commit

Permalink
feat(ci): limit concurrency of Docker build workflow to one ; closes #…
Browse files Browse the repository at this point in the history
  • Loading branch information
MagneticNeedle authored Aug 21, 2024
2 parents 5ee1c2d + 9993e11 commit d5b3428
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions .github/workflows/build_docker_image.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,10 @@ on:
- main
- production

concurrency:
group: ${{ github.head_ref || github.ref_name }}
cancel-in-progress: true

env:
REGISTRY: ghcr.io
IMAGE_NAME: ${{ github.repository }}
Expand Down

0 comments on commit d5b3428

Please sign in to comment.