From de0159d2f5259e8d6a43e26a9eab45576d57d734 Mon Sep 17 00:00:00 2001 From: Alex Rudenko Date: Mon, 14 Feb 2022 14:06:57 +0100 Subject: [PATCH] chore: disable npm deprecate until the proxy is fixed (#8019) --- .github/workflows/publish-on-tag.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/publish-on-tag.yml b/.github/workflows/publish-on-tag.yml index 65a0d1add28f6..53f05bcee9a6f 100644 --- a/.github/workflows/publish-on-tag.yml +++ b/.github/workflows/publish-on-tag.yml @@ -23,9 +23,9 @@ jobs: npm config set '//wombat-dressing-room.appspot.com/:_authToken' '${NPM_TOKEN}' echo "Publishing puppeteer" npm publish - DEPRECATED_RANGE=$(node utils/get_deprecated_version_range.js) - echo "Deprecating old puppeteer versions: $DEPRECATED_RANGE" - npm deprecate puppeteer@$DEPRECATED_RANGE "Version no longer supported. Upgrade to @latest" + # DEPRECATED_RANGE=$(node utils/get_deprecated_version_range.js) + # echo "Deprecating old puppeteer versions: $DEPRECATED_RANGE" + # npm deprecate puppeteer@$DEPRECATED_RANGE "Version no longer supported. Upgrade to @latest" - name: Publish puppeteer-core env: NPM_TOKEN: ${{secrets.NPM_TOKEN_PUPPETEER_CORE}}