From 0034b6cbe79a88adaea7576d1e7bfd31e4b71b5a Mon Sep 17 00:00:00 2001 From: Davide Carpini Date: Mon, 25 Nov 2024 09:44:14 +0100 Subject: [PATCH] fix: prepare packages script (#306) --- scripts/prepare-packages.ts | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/scripts/prepare-packages.ts b/scripts/prepare-packages.ts index 61bec4db..77bfa0b5 100644 --- a/scripts/prepare-packages.ts +++ b/scripts/prepare-packages.ts @@ -74,9 +74,8 @@ const preparePackages = async () => { console.log( ` - 🚀🚀🚀 Release branch is ready to be merged 🚀🚀🚀\n\n`, ` - 📝 Create the PR for the release branch v${version}\n`, - ` - 🔖 When the PR is merged, create the release on github called ${version}\n`, - ` - 📝 Then pull the tag and checkout the release branch\n`, - ` - 📝 Then run 'yarn changeset publish' to publish the packages\n`, + ` - 🔖 When the PR is merged, create the release on github called ${version}, it will automatically tag the commit with the version ${version}.\n`, + ` - 🚀 Then run 'yarn publish:release ${version}' to checkout in the tag and publish packages\n`, ); console.log('\n______________________________________________________\n\n'); };