From ed3036584ee0a586532ce1f8d9c15b6f3b01f4eb Mon Sep 17 00:00:00 2001 From: raj pandey Date: Wed, 12 Aug 2026 19:10:23 +0530 Subject: [PATCH] =?UTF-8?q?fix:=20rename=20dist-tag=20v1=20=E2=86=92=20v1-?= =?UTF-8?q?latest=20in=20v1-legacy=20release=20workflows?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit npm rejects dist-tags that are valid SemVer ranges. 'v1' parses as >=1.0.0-0 <2.0.0-0. 'v1-latest' is not a SemVer range and is accepted. Co-Authored-By: Claude Sonnet 4.6 --- .github/workflows/release-production-core.yml | 2 +- .github/workflows/release-production-platform-plugins.yml | 8 ++++---- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/release-production-core.yml b/.github/workflows/release-production-core.yml index 0c577245ab..837013c035 100644 --- a/.github/workflows/release-production-core.yml +++ b/.github/workflows/release-production-core.yml @@ -43,7 +43,7 @@ jobs: with: token: ${{ secrets.NPM_TOKEN }} package: ./packages/contentstack/package.json - tag: v1 + tag: v1-latest - name: Create Core Production Release id: create_release diff --git a/.github/workflows/release-production-platform-plugins.yml b/.github/workflows/release-production-platform-plugins.yml index 84be85d3cd..b23d5aa542 100644 --- a/.github/workflows/release-production-platform-plugins.yml +++ b/.github/workflows/release-production-platform-plugins.yml @@ -43,7 +43,7 @@ jobs: with: token: ${{ secrets.NPM_TOKEN }} package: ./packages/contentstack-utilities/package.json - tag: v1 + tag: v1-latest # Command - name: Publishing command (Production) @@ -51,7 +51,7 @@ jobs: with: token: ${{ secrets.NPM_TOKEN }} package: ./packages/contentstack-command/package.json - tag: v1 + tag: v1-latest # Config - name: Publishing config (Production) @@ -59,7 +59,7 @@ jobs: with: token: ${{ secrets.NPM_TOKEN }} package: ./packages/contentstack-config/package.json - tag: v1 + tag: v1-latest # Auth - name: Publishing auth (Production) @@ -67,4 +67,4 @@ jobs: with: token: ${{ secrets.NPM_TOKEN }} package: ./packages/contentstack-auth/package.json - tag: v1 + tag: v1-latest