From f66460a9428cd4eb7c6d04a3f07e3e4553152a98 Mon Sep 17 00:00:00 2001 From: Marika Marszalkowski Date: Fri, 13 Sep 2024 09:59:47 +0200 Subject: [PATCH] gf --- .github/actions/changesets-fixed-version-bump/index.js | 1 + build-packages/changesets-fixed-version-bump/util.ts | 1 + 2 files changed, 2 insertions(+) diff --git a/.github/actions/changesets-fixed-version-bump/index.js b/.github/actions/changesets-fixed-version-bump/index.js index 057ec271b2..9bcbe26487 100644 --- a/.github/actions/changesets-fixed-version-bump/index.js +++ b/.github/actions/changesets-fixed-version-bump/index.js @@ -33,6 +33,7 @@ const bumpTypeOrder = ['major', 'minor', 'patch', 'none']; async function getNextVersion() { const currentVersion = getPackageVersion(); (0, node_console_1.info)(`Current version: ${currentVersion}`); + (0, node_console_1.info)(`process.cwd(): ${process.cwd()}`); const releasePlan = await (0, get_release_plan_1.default)(process.cwd()); (0, node_console_1.info)(`Release plan: ${JSON.stringify(releasePlan)}`); const versionIncreases = releasePlan.releases diff --git a/build-packages/changesets-fixed-version-bump/util.ts b/build-packages/changesets-fixed-version-bump/util.ts index 0eb466021f..127877ded6 100644 --- a/build-packages/changesets-fixed-version-bump/util.ts +++ b/build-packages/changesets-fixed-version-bump/util.ts @@ -34,6 +34,7 @@ export async function getNextVersion(): Promise<{ }> { const currentVersion = getPackageVersion(); info(`Current version: ${currentVersion}`); + info(`process.cwd(): ${process.cwd()}`); const releasePlan = await getReleasePlan(process.cwd()); info(`Release plan: ${JSON.stringify(releasePlan)}`);