diff options
| author | Christian Marangi | 2023-10-04 11:27:55 +0000 |
|---|---|---|
| committer | Christian Marangi | 2023-10-04 11:30:43 +0000 |
| commit | 07e4352d80d251069488018d90422791e01ee894 (patch) | |
| tree | f50eab75388120845a5cb184cf14a598736fb61d | |
| parent | 3fff6255422c9223fe91ce68dd227ec6942aa688 (diff) | |
| download | openwrt-07e4352d80d251069488018d90422791e01ee894.tar.gz | |
CI: push-containers: fix concurrency group
Fix concurrency group for push-containers workflow to handle running on
different branches.
Signed-off-by: Christian Marangi <ansuelsmth@gmail.com>
(cherry picked from commit 4c2eab1c27defd154adcd0c4454248112815ffcc)
| -rw-r--r-- | .github/workflows/push-containers.yml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/.github/workflows/push-containers.yml b/.github/workflows/push-containers.yml index 28b07244ef..0cfc22b8be 100644 --- a/.github/workflows/push-containers.yml +++ b/.github/workflows/push-containers.yml @@ -13,7 +13,7 @@ permissions: contents: read concurrency: - group: ${{ github.workflow }} + group: ${{ github.workflow }}-${{ github.ref }} cancel-in-progress: true jobs: |