From cacfbc24cc483753774306801cd18dd3182da990 Mon Sep 17 00:00:00 2001 From: Shantur Rathore Date: Fri, 21 Nov 2025 13:52:45 +0000 Subject: [PATCH] Fix workspace version bumps in CI workflows --- .github/workflows/build-and-upload.yml | 8 ++++---- .github/workflows/dev-release.yml | 2 +- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/build-and-upload.yml b/.github/workflows/build-and-upload.yml index 639cfa34..48064083 100644 --- a/.github/workflows/build-and-upload.yml +++ b/.github/workflows/build-and-upload.yml @@ -40,7 +40,7 @@ jobs: cache: npm - name: Set workspace versions - run: npm pkg set version=${VERSION} --workspaces --include-workspace-root + run: npm version ${VERSION} --workspaces --include-workspace-root --no-git-tag-version --allow-same-version - name: Install dependencies run: npm ci --workspaces @@ -80,7 +80,7 @@ jobs: cache: npm - name: Set workspace versions - run: npm pkg set version=${{ env.VERSION }} --workspaces --include-workspace-root + run: npm version ${{ env.VERSION }} --workspaces --include-workspace-root --no-git-tag-version --allow-same-version shell: bash - name: Install dependencies @@ -115,7 +115,7 @@ jobs: cache: npm - name: Set workspace versions - run: npm pkg set version=${VERSION} --workspaces --include-workspace-root + run: npm version ${VERSION} --workspaces --include-workspace-root --no-git-tag-version --allow-same-version - name: Install dependencies run: npm ci --workspaces @@ -161,7 +161,7 @@ jobs: sudo gem install --no-document fpm - name: Set workspace versions - run: npm pkg set version=${VERSION} --workspaces --include-workspace-root + run: npm version ${VERSION} --workspaces --include-workspace-root --no-git-tag-version --allow-same-version - name: Install project dependencies run: npm ci --workspaces diff --git a/.github/workflows/dev-release.yml b/.github/workflows/dev-release.yml index 2cfea6ba..84da95a8 100644 --- a/.github/workflows/dev-release.yml +++ b/.github/workflows/dev-release.yml @@ -74,7 +74,7 @@ jobs: cache: npm - name: Set workspace versions - run: npm pkg set version=${VERSION} --workspaces --include-workspace-root + run: npm version ${VERSION} --workspaces --include-workspace-root --no-git-tag-version --allow-same-version - name: Install dependencies run: npm ci --workspaces