Skip to content

Commit

Permalink
ci: properly prefix proposed release in release script with 'v'
Browse files Browse the repository at this point in the history
  • Loading branch information
denolfe committed May 17, 2024
1 parent 5323d76 commit e418525
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion scripts/utils/updateChangelog.ts
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ export const updateChangelog = async (args: Args = {}): Promise<ChangelogResult>

const calculatedBump = bump || recommendedBump

const proposedReleaseVersion = semver.inc(fromVersion, calculatedBump, undefined, tag)
const proposedReleaseVersion = 'v' + semver.inc(fromVersion, calculatedBump, undefined, tag)

console.log({
tag,
Expand Down

0 comments on commit e418525

Please sign in to comment.