Skip to content

Commit

Permalink
Fixed an invalid package name when checking if the repository is read…
Browse files Browse the repository at this point in the history
…y to release.
  • Loading branch information
pomek committed Dec 3, 2024
1 parent da1f2de commit a3b160b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion scripts/ci/is-project-ready-to-release.js
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ import * as releaseTools from '@ckeditor/ckeditor5-dev-release-tools';
const changelogVersion = releaseTools.getLastFromChangelog();
const npmTag = releaseTools.getNpmTagFromVersion( changelogVersion );

releaseTools.isVersionPublishableForTag( '@ckeditor/ckeditor5-package-generator', changelogVersion, npmTag )
releaseTools.isVersionPublishableForTag( 'ckeditor5-package-generator', changelogVersion, npmTag )
.then( result => {
if ( !result ) {
console.error( `The proposed changelog (${ changelogVersion }) version is not higher than the already published one.` );
Expand Down

0 comments on commit a3b160b

Please sign in to comment.