We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5b728fa commit bc78751Copy full SHA for bc78751
packages/build/src/release.ts
@@ -76,13 +76,11 @@ const release = async(config: Config) => {
76
// Publish to NPM.
77
//
78
// These only need to happen once so we only run them on MacOS.
79
- if (platform === Platform.MacOs) {
80
- await uploadDownloadCenterConfig(
81
- config.version,
82
- config.downloadCenterAwsKey,
83
- config.downloadCenterAwsSecret
84
- );
85
- }
+ await uploadDownloadCenterConfig(
+ config.version,
+ config.downloadCenterAwsKey,
+ config.downloadCenterAwsSecret
+ );
86
}
87
88
console.log('mongosh: finished release process.');
0 commit comments