Skip to content

Commit b9bdee8

Browse files
authored
chore(ci): remove temporary workflow for pushing tags MONGOSH-1988 (#2335)
We added a temporary workflow to publish some tags that did not get published in the last auxiliary release. They are in now so we can remove it.
1 parent a982de2 commit b9bdee8

File tree

5 files changed

+1
-59
lines changed

5 files changed

+1
-59
lines changed

.github/workflows/temp-push-auxiliary-tags.yml

Lines changed: 0 additions & 49 deletions
This file was deleted.

package.json

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -72,8 +72,7 @@
7272
"precommit": "precommit",
7373
"preinstall": "node scripts/sort-workspaces.js",
7474
"bump-auxiliary": "npm run bump-auxiliary --workspace @mongosh/build",
75-
"publish-auxiliary": "npm run publish-auxiliary --workspace @mongosh/build",
76-
"tags-auxiliary": "npm run tags-auxiliary --workspace @mongosh/build"
75+
"publish-auxiliary": "npm run publish-auxiliary --workspace @mongosh/build"
7776
},
7877
"config": {
7978
"unsafe-perm": true

packages/build/package.json

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,6 @@
3030
"publish": "ts-node src/index.ts publish",
3131
"bump-auxiliary": "ts-node src/index.ts bump --auxiliary",
3232
"publish-auxiliary": "ts-node src/index.ts publish --auxiliary",
33-
"tags-auxiliary": "ts-node src/index.ts temp-push-auxiliary-tags --auxiliary",
3433
"reformat": "npm run prettier -- --write . && npm run eslint --fix"
3534
},
3635
"license": "Apache-2.0",

packages/build/src/index.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,6 @@ const validCommands: (ReleaseCommand | 'trigger-release')[] = [
2020
'download-crypt-shared-library',
2121
'download-and-list-artifacts',
2222
'trigger-release',
23-
'temp-push-auxiliary-tags',
2423
] as const;
2524

2625
const isValidCommand = (

packages/build/src/release.ts

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,6 @@ export type ReleaseCommand =
3434
| 'download-crypt-shared-library'
3535
| 'download-and-list-artifacts'
3636
| 'draft'
37-
| 'temp-push-auxiliary-tags'
3837
| 'publish';
3938

4039
/**
@@ -57,11 +56,6 @@ export async function release(
5756
redactConfig(config)
5857
);
5958

60-
if (command === 'temp-push-auxiliary-tags') {
61-
pushTags({ useAuxiliaryPackagesOnly: true });
62-
return;
63-
}
64-
6559
if (command === 'bump') {
6660
bumpAuxiliaryPackages();
6761
if (!config.useAuxiliaryPackagesOnly) {

0 commit comments

Comments
 (0)