From 5c6ab44b415321c8efd7d25322e2fbe5607d45a6 Mon Sep 17 00:00:00 2001 From: "Grot (@grafanabot)" <43478413+grafanabot@users.noreply.github.com> Date: Fri, 7 Jan 2022 10:38:24 +0100 Subject: [PATCH] Remove duplication (#43694) (#43786) (cherry picked from commit beba5958a44a0698e6fe02d07d87f4d1a5a15eba) Co-authored-by: Dimitris Sotirakis --- scripts/build/release-npm-packages.sh | 10 ---------- 1 file changed, 10 deletions(-) diff --git a/scripts/build/release-npm-packages.sh b/scripts/build/release-npm-packages.sh index 6d48c395aeb..7d03d2f1cd1 100755 --- a/scripts/build/release-npm-packages.sh +++ b/scripts/build/release-npm-packages.sh @@ -51,13 +51,3 @@ if [ $RELEASE_CHANNEL == "latest" ]; then npm dist-tag add "$i"@"$PACKAGE_VERSION" next done fi - -# When releasing stable(latest) version of packages we are updating previously published next tag(beta) to be the same version as latest -if [ $RELEASE_CHANNEL == "latest" ]; then - for i in "${PACKAGES[@]}" - do - : - npm dist-tag add "$i"@"$PACKAGE_VERSION" next - done -fi -