Skip to content

Commit

Permalink
build: skip releasing nuxi
Browse files Browse the repository at this point in the history
  • Loading branch information
danielroe committed Aug 25, 2023
1 parent abd5d85 commit df2bc8a
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 0 deletions.
3 changes: 3 additions & 0 deletions scripts/release-edge.sh
Expand Up @@ -20,6 +20,9 @@ fi

# Release packages
for p in packages/* ; do
if [[ $p == "packages/nuxi" ]] ; then
continue
fi
pushd $p
echo "Publishing $p"
cp ../../LICENSE .
Expand Down
3 changes: 3 additions & 0 deletions scripts/release-rc.sh
Expand Up @@ -10,6 +10,9 @@ pnpm build

# Release packages
for PKG in packages/* ; do
if [[ $p == "packages/nuxi" ]] ; then
continue
fi
pushd $PKG
TAG="latest"
if [ "$PKG" == "packages/nuxt" ]; then
Expand Down
3 changes: 3 additions & 0 deletions scripts/release.sh
Expand Up @@ -10,6 +10,9 @@ pnpm build

# Release packages
for PKG in packages/* ; do
if [[ $p == "packages/nuxi" ]] ; then
continue
fi
pushd $PKG
TAG="latest"
echo "⚡ Publishing $PKG with tag $TAG"
Expand Down

0 comments on commit df2bc8a

Please sign in to comment.