From 5b65653fe8cedf1219e523bf44ee0a7453dcc8d2 Mon Sep 17 00:00:00 2001 From: Tycho Bokdam Date: Wed, 29 Apr 2020 10:04:02 +0200 Subject: [PATCH] fix: Fixed tagPrefix not being provided to bumper --- src/index.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/index.js b/src/index.js index 9b8c57a..e80df94 100644 --- a/src/index.js +++ b/src/index.js @@ -21,10 +21,10 @@ async function run() { core.info(`Using "${tagPrefix}" as tag prefix`) core.info(`Using "${outputFile}" as output file`) - conventionalRecommendedBump({ preset }, async(error, recommendation) => { core.info('Pull to make sure we have the full git history') await git.pull() + conventionalRecommendedBump({ preset, tagPrefix }, async(error, recommendation) => { if (error) { core.setFailed(error.message)