fix: Don't cancel ci image builds (#2259)

This commit is contained in:
Ayaz Salikhov
2025-06-26 14:51:34 +01:00
committed by GitHub
parent 04c80c62f5
commit 4f7e8194f0
2 changed files with 4 additions and 3 deletions

View File

@@ -23,9 +23,10 @@ on:
workflow_dispatch:
concurrency:
# Only cancel in-progress jobs or runs for the current workflow - matches against branch & tags
# Only matches runs for the current workflow - matches against branch & tags
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
# We want to execute all builds sequentially in develop
cancel-in-progress: false
env:
GHCR_REPO: ghcr.io/${{ github.repository_owner }}