Skip to content

Commit ea8e866

Browse files
committed
a
1 parent 0aa21ac commit ea8e866

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

.github/workflows/incrementVersionAndCreatePR.cjs

+2
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,9 @@ module.exports = async ({ github, context, versionType }) => {
1414
async function incrementVersion() {
1515
console.log(`Incrementing version with ${versionType}`);
1616
await execAsync(`npm version ${versionType}`);
17+
console.log("Version incremented");
1718
const packageJson = require("../../package.json");
19+
console.log("packageJson");
1820
const version = packageJson.version;
1921
console.log(`Incremented version to v${version}(${versionType})`);
2022
const featureBranch = `chore-increment-verion-${version}-${versionType}-${context.runNumber}`;

0 commit comments

Comments
 (0)