diff --git a/scripts/github/deploy.sh b/scripts/github/deploy.sh index d3b4de8859..e400989b2a 100644 --- a/scripts/github/deploy.sh +++ b/scripts/github/deploy.sh @@ -84,14 +84,6 @@ git push origin "${NEW_VERSION}" echo "Publishing latest packages to npm" lerna publish --registry=https://registry.npmjs.org/ from-git --yes --pre-dist-tag rc --no-verify-access -# Add a delay to allow NPM registry to propagate the new versions -echo "Waiting for NPM registry to propagate new versions" -sleep 30 - -echo "Updating package-lock.json from ${PREVIOUS_VERSION} to ${NEW_VERSION}" -# Update package-lock.json files to reflect new versions -lerna exec -- npm install --package-lock-only - # If we've pushed a new release into master and it is not a hotfix/patch, then merge the changes back to develop if [ "${BRANCH}" == "master" ] && [ "${RELEASE_TYPE}" != "patch" ]; then git checkout develop