fix: Fixed tagPrefix not being provided to bumper

releases/v3
Tycho Bokdam 2020-04-29 10:04:02 +02:00
parent 50ab4fa80a
commit 5b65653fe8
No known key found for this signature in database
GPG Key ID: A0FAE77C8CDF33C7
1 changed files with 1 additions and 1 deletions

View File

@ -21,10 +21,10 @@ async function run() {
core.info(`Using "${tagPrefix}" as tag prefix`) core.info(`Using "${tagPrefix}" as tag prefix`)
core.info(`Using "${outputFile}" as output file`) core.info(`Using "${outputFile}" as output file`)
conventionalRecommendedBump({ preset }, async(error, recommendation) => {
core.info('Pull to make sure we have the full git history') core.info('Pull to make sure we have the full git history')
await git.pull() await git.pull()
conventionalRecommendedBump({ preset, tagPrefix }, async(error, recommendation) => {
if (error) { if (error) {
core.setFailed(error.message) core.setFailed(error.message)