Skip to content

Commit 758778e

Browse files
committed
chore: remove debug steps from publish scripts
1 parent e7330e2 commit 758778e

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

scripts/publish.sh

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -15,12 +15,12 @@ LATEST_PACKAGE_VERSION=$(npm show "$PACKAGE_NAME" version)
1515
echo "Published packaged version $LATEST_PACKAGE_VERSION"
1616

1717
if [ "$PACKAGE_VERSION" != "$LATEST_PACKAGE_VERSION" ] ; then
18-
echo yarn build
18+
yarn build
1919

2020
if [[ "$PACKAGE_VERSION" == *"beta"* ]] ; then
21-
echo yarn publish --new-version "$PACKAGE_VERSION" --tag beta
21+
yarn publish --new-version "$PACKAGE_VERSION" --tag beta
2222
else
23-
echo yarn publish --new-version "$PACKAGE_VERSION"
23+
yarn publish --new-version "$PACKAGE_VERSION"
2424
fi
2525
else
2626
echo "Package not updated. Skipping publish"

0 commit comments

Comments
 (0)