Skip to content

Commit 17c43a8

Browse files
committed
fix: add same bump steps in publish
1 parent 182268c commit 17c43a8

File tree

1 file changed

+7
-0
lines changed

1 file changed

+7
-0
lines changed

packages/build/src/publish-mongosh.ts

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,10 @@ import type { pushTags as pushTagsType } from './npm-packages';
1414
import { type publishToNpm as publishToNpmType } from './npm-packages';
1515
import type { PackageInformationProvider } from './packaging';
1616
import { getPackageFile } from './packaging';
17+
import {
18+
bumpAuxiliaryPackages,
19+
bumpMongoshReleasePackages,
20+
} from './npm-packages/bump';
1721

1822
export async function publishMongosh(
1923
config: Config,
@@ -59,6 +63,9 @@ export async function publishMongosh(
5963
latestDraftTag.name
6064
);
6165

66+
bumpAuxiliaryPackages();
67+
await bumpMongoshReleasePackages(releaseVersion);
68+
6269
await publishArtifactsToBarque(
6370
barque,
6471
config.project as string,

0 commit comments

Comments
 (0)