build: ensure that version stamping is applied when the npm_package publish action is called (#33512)
PR Close #33512
This commit is contained in:
parent
7caed51c24
commit
c4695bb387
@ -20,6 +20,6 @@ $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 -- ${packageLabel}.publish --access public --tag latest
|
$BAZEL run --config=release -- ${packageLabel}.publish --access public --tag latest
|
||||||
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 -- ${packageLabel}.publish --access public --tag next
|
$BAZEL run --config=release -- ${packageLabel}.publish --access public --tag next
|
||||||
done
|
done
|
||||||
|
Loading…
x
Reference in New Issue
Block a user