Remove duplication (#43694)

This commit is contained in:
Dimitris Sotirakis 2022-01-07 11:23:17 +02:00 committed by GitHub
parent 7917c04883
commit beba5958a4
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

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