From e1ce1c6bbda847bfc85c5381bdb3ad6f03b485a5 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ga=C3=ABl=20Dostie?= <35579930+gdostie@users.noreply.github.com> Date: Wed, 30 Oct 2024 15:05:22 -0400 Subject: [PATCH] build(release): fix release workflow --- release.mjs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/release.mjs b/release.mjs index 128e27e8..ab600436 100644 --- a/release.mjs +++ b/release.mjs @@ -47,7 +47,7 @@ import {createActionAuth} from '@octokit/auth-action'; // Passing an empty string allow empty commits (i.e. that does not modify any files) to be included. const commits = await getCommits('', lastTag); const parsedCommits = parseCommits(commits, CONVENTION.parserOpts); - const bumpInfo = CONVENTION.recommendedBumpOpts.whatBump(parsedCommits); + const bumpInfo = CONVENTION.whatBump(parsedCommits); const currentVersion = getCurrentVersion(PATH); const newVersion = getNextVersion(currentVersion, bumpInfo); const newVersionTag = `${VERSION_PREFIX}${newVersion}`;