Skip to content

Commit

Permalink
chore: fix release script
Browse files Browse the repository at this point in the history
  • Loading branch information
JamesHenry committed Mar 11, 2024
1 parent 95cf139 commit 8400939
Showing 1 changed file with 1 addition and 5 deletions.
6 changes: 1 addition & 5 deletions tools/release/release.mts
Expand Up @@ -42,16 +42,12 @@ if (!options.dryRun) {
}

// This will create a release on GitHub
const changelogStatus = await releaseChangelog({
await releaseChangelog({
versionData: projectsVersionData,
version: workspaceVersion,
dryRun: options.dryRun,
verbose: options.verbose,
});
if (changelogStatus !== 0) {
console.error('🚨 Failed to generate changelog');
process.exit(changelogStatus);
}

// An explicit null value here means that no changes were detected across any package
// eslint-disable-next-line eqeqeq
Expand Down

0 comments on commit 8400939

Please sign in to comment.