From 6a970167debf9fbab710be091dcd74d5a7e84b58 Mon Sep 17 00:00:00 2001 From: Zach Arend Date: Wed, 26 May 2021 17:34:07 +0000 Subject: [PATCH] build: use wombat-dressing-room proxy for publishing releases (#42357) In the scripts to release latest and next, use the npm proxy for publishing the release. PR Close #42357 --- scripts/release/publish-latest | 2 +- scripts/release/publish-next | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/scripts/release/publish-latest b/scripts/release/publish-latest index 57b2d34273..3a82453361 100755 --- a/scripts/release/publish-latest +++ b/scripts/release/publish-latest @@ -20,5 +20,5 @@ $BAZEL build --config=release $NPM_PACKAGE_LABELS # publish all packages in sequence to make it easier to spot any errors or warnings for packageLabel in $NPM_PACKAGE_LABELS; do echo "publishing $packageLabel" - $BAZEL run --config=release -- ${packageLabel}.publish --access public --tag latest + $BAZEL run --config=release -- ${packageLabel}.publish --access public --tag latest --registry https://wombat-dressing-room.appspot.com done diff --git a/scripts/release/publish-next b/scripts/release/publish-next index 5f49d1b79e..d7d95c4474 100755 --- a/scripts/release/publish-next +++ b/scripts/release/publish-next @@ -20,5 +20,5 @@ $BAZEL build --config=release $NPM_PACKAGE_LABELS # publish all packages in sequence to make it easier to spot any errors or warnings for packageLabel in $NPM_PACKAGE_LABELS; do echo "publishing $packageLabel" - $BAZEL run --config=release -- ${packageLabel}.publish --access public --tag next + $BAZEL run --config=release -- ${packageLabel}.publish --access public --tag next --registry https://wombat-dressing-room.appspot.com done