Remove duplication (#43694) (#43786)

(cherry picked from commit beba5958a4)

Co-authored-by: Dimitris Sotirakis <dimitrios.sotirakis@grafana.com>
This commit is contained in:
Grot (@grafanabot)
2022-01-07 10:38:24 +01:00
committed by GitHub
co-authored by Dimitris Sotirakis
parent 040bdf4803
commit 5c6ab44b41
-10
View File
@@ -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