diff options
author | Christian Marangi <ansuelsmth@gmail.com> | 2023-10-04 13:27:55 +0200 |
---|---|---|
committer | Christian Marangi <ansuelsmth@gmail.com> | 2023-10-04 13:27:55 +0200 |
commit | 4c2eab1c27defd154adcd0c4454248112815ffcc (patch) | |
tree | 3925b8b1a6a8d528bc84e83dc1b14ba58bec2c94 | |
parent | 29a56e0412668f197353001254125ae40824db1e (diff) | |
download | openwrt-4c2eab1c27defd154adcd0c4454248112815ffcc.tar.gz openwrt-4c2eab1c27defd154adcd0c4454248112815ffcc.tar.bz2 openwrt-4c2eab1c27defd154adcd0c4454248112815ffcc.zip |
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>
-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 5b5140961c..0d41b0a67f 100644 --- a/.github/workflows/push-containers.yml +++ b/.github/workflows/push-containers.yml @@ -14,7 +14,7 @@ permissions: contents: read concurrency: - group: ${{ github.workflow }} + group: ${{ github.workflow }}-${{ github.ref }} cancel-in-progress: true jobs: |