From 1fd04a3fe38557da4fe583f75db2ddecc5c6edbe Mon Sep 17 00:00:00 2001 From: Pavel Fadeev Date: Fri, 21 Aug 2026 23:06:34 +0200 Subject: [PATCH] fix(ci): allow same-version in npm publish workflow --- .github/workflows/npm-publish.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/npm-publish.yml b/.github/workflows/npm-publish.yml index 54cb608..f16286d 100644 --- a/.github/workflows/npm-publish.yml +++ b/.github/workflows/npm-publish.yml @@ -31,9 +31,9 @@ jobs: echo "Release tag: $RELEASE_TAG" echo "Extracted version: $VERSION" - - name: Update package.json version + - name: Ensure package.json version matches release tag run: | - npm version ${{ steps.get_version.outputs.version }} --no-git-tag-version + npm version ${{ steps.get_version.outputs.version }} --no-git-tag-version --allow-same-version - name: Install dependencies run: npm ci