From 0c15fb71bece09e162d33cb44d2ffd4e9ffeb894 Mon Sep 17 00:00:00 2001 From: Shubh-Raj Date: Thu, 8 Jan 2026 19:01:26 +0530 Subject: [PATCH] chore(ci): add concurrency control to npm-publish workflow Prevents duplicate workflow runs for the same release. Uses cancel-in-progress: false to ensure publish jobs complete. Signed-off-by: Shubh-Raj --- .github/workflows/npm-publish.yml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/.github/workflows/npm-publish.yml b/.github/workflows/npm-publish.yml index 760dafe..bda4408 100644 --- a/.github/workflows/npm-publish.yml +++ b/.github/workflows/npm-publish.yml @@ -7,6 +7,10 @@ on: release: types: [created] +concurrency: + group: ${{ github.workflow }}-${{ github.ref }} + cancel-in-progress: false + jobs: build: runs-on: ubuntu-latest