Skip to content

Commit

Permalink
chore(action): prevent simultaneous docker builds
Browse files Browse the repository at this point in the history
  • Loading branch information
Jumpy-Squirrel committed Jul 13, 2024
1 parent f5aa496 commit c3b5452
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions .github/workflows/docker.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,10 @@ on:
tags:
- 'v[0-9]+.[0-9]+.[0-9]+'

concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: false

jobs:
call_build-and-push-image_latest:
if: startsWith(github.ref, 'refs/heads/')
Expand Down

0 comments on commit c3b5452

Please sign in to comment.