From 963b95b5ddf1ed9c72f779b96697509c709d59f2 Mon Sep 17 00:00:00 2001 From: Bobbie Goede Date: Tue, 1 Oct 2024 17:11:06 +0200 Subject: [PATCH] fix: tag v9 as `legacy9` and `next9` (#1981) --- scripts/release-edge.sh | 2 +- scripts/release.sh | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/scripts/release-edge.sh b/scripts/release-edge.sh index 65f810a13..5dfb584c6 100755 --- a/scripts/release-edge.sh +++ b/scripts/release-edge.sh @@ -24,7 +24,7 @@ for PKG in packages/* ; do fi pushd $PKG echo "⚡ Publishing $PKG with edge tag" - pnpm publish --access public --no-git-checks --tag edge + pnpm publish --access public --no-git-checks --tag edge9 popd fi done diff --git a/scripts/release.sh b/scripts/release.sh index fe6ce59f6..d70aca713 100755 --- a/scripts/release.sh +++ b/scripts/release.sh @@ -23,7 +23,7 @@ for PKG in packages/* ; do continue fi pushd $PKG - TAG="latest" + TAG="legacy9" echo "⚡ Publishing $PKG with tag $TAG" pnpm publish --access public --no-git-checks --tag $TAG popd > /dev/null