Skip to content

Commit 8d38285

Browse files
committed
a
1 parent 02c8587 commit 8d38285

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

.github/workflows/incrementVersionAndCreatePR.cjs

+1
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,7 @@ module.exports = async ({ github, context, versionType }) => {
1313
await execAsync(`npm version ${versionType}`);
1414
const packageJson = require("../../package.json");
1515
const version = packageJson.version;
16+
console.log(`Incremented version to v${version}(${versionType})`);
1617
const featureBranch = `chore-increment-verion-${version}-${versionType}-${context.runNumber}`;
1718
return { featureBranch, version };
1819
}

0 commit comments

Comments
 (0)