Skip to content

Commit

Permalink
fix: publish packages script
Browse files Browse the repository at this point in the history
  • Loading branch information
davidecarpini committed Oct 28, 2024
1 parent a483288 commit 857969c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions scripts/prepare-packages.ts
Original file line number Diff line number Diff line change
Expand Up @@ -36,8 +36,8 @@ const preparePackages = async () => {
console.log(` πŸš€πŸš€πŸš€ Preparing ${version} for release πŸš€πŸš€πŸš€`);
console.log('\n______________________________________________________\n\n');

console.log(' Checkout the release branch:');
await exec('git checkout -b vX.Y.Z');
console.log(` Checkout the release branch:`);
await exec(`git checkout -b v${version}`);
console.log(' - βœ… Checked out!');

console.log(' Clean:');
Expand Down

0 comments on commit 857969c

Please sign in to comment.