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
This commit is contained in:
parent
8228170919
commit
6a970167de
|
@ -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
|
# publish all packages in sequence to make it easier to spot any errors or warnings
|
||||||
for packageLabel in $NPM_PACKAGE_LABELS; do
|
for packageLabel in $NPM_PACKAGE_LABELS; do
|
||||||
echo "publishing $packageLabel"
|
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
|
done
|
||||||
|
|
|
@ -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
|
# publish all packages in sequence to make it easier to spot any errors or warnings
|
||||||
for packageLabel in $NPM_PACKAGE_LABELS; do
|
for packageLabel in $NPM_PACKAGE_LABELS; do
|
||||||
echo "publishing $packageLabel"
|
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
|
done
|
||||||
|
|
Loading…
Reference in New Issue