build: skip releasing `nuxi`

This commit is contained in:
Daniel Roe 2023-08-25 16:39:27 +01:00
parent abd5d85770
commit df2bc8a72e
3 changed files with 9 additions and 0 deletions

View File

@ -20,6 +20,9 @@ fi
# Release packages # Release packages
for p in packages/* ; do for p in packages/* ; do
if [[ $p == "packages/nuxi" ]] ; then
continue
fi
pushd $p pushd $p
echo "Publishing $p" echo "Publishing $p"
cp ../../LICENSE . cp ../../LICENSE .

View File

@ -10,6 +10,9 @@ pnpm build
# Release packages # Release packages
for PKG in packages/* ; do for PKG in packages/* ; do
if [[ $p == "packages/nuxi" ]] ; then
continue
fi
pushd $PKG pushd $PKG
TAG="latest" TAG="latest"
if [ "$PKG" == "packages/nuxt" ]; then if [ "$PKG" == "packages/nuxt" ]; then

View File

@ -10,6 +10,9 @@ pnpm build
# Release packages # Release packages
for PKG in packages/* ; do for PKG in packages/* ; do
if [[ $p == "packages/nuxi" ]] ; then
continue
fi
pushd $PKG pushd $PKG
TAG="latest" TAG="latest"
echo "⚡ Publishing $PKG with tag $TAG" echo "⚡ Publishing $PKG with tag $TAG"