ci: properly prefix proposed release in release script with 'v'

This commit is contained in:
Elliot DeNolf
2024-05-16 22:34:21 -04:00
parent 5323d76a5b
commit e4185259b4

View File

@@ -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,