From 2c7f4b8dddd30c1cf5f016940ed0001f9f53c65a Mon Sep 17 00:00:00 2001 From: Teofilo Monteiro Date: Wed, 13 Oct 2021 10:00:35 +0200 Subject: [PATCH] Log the version with user format and namespace --- index.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/index.js b/index.js index 79548a6..d5e5f94 100644 --- a/index.js +++ b/index.js @@ -61,7 +61,7 @@ const setOutput = (major, minor, patch, increment, changed, branch, namespace) = core.info('No changes detected for this commit'); } - core.info(`Version is ${major}.${minor}.${patch}+${increment}`); + core.info(`Version is ${version}`); if (repository !== undefined && !namespace) { core.info(`To create a release for this version, go to https://github.com/${repository}/releases/new?tag=${tag}&target=${branch.split('/').reverse()[0]}`); }