Skip to content

Commit c26eff6

Browse files
authored
chore(scripts): dont use verbose when releasing from the CI (#5448)
1 parent 4d9286b commit c26eff6

File tree

2 files changed

+3
-4
lines changed

2 files changed

+3
-4
lines changed

.github/workflows/scheduled-release.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
name: Scheduled Release
1+
name: Scheduled/Manual Release
22

33
on:
44
schedule:
@@ -7,7 +7,7 @@ on:
77

88
jobs:
99
release:
10-
name: Scheduled Release
10+
name: Scheduled/Manual Release
1111
runs-on: ubuntu-22.04
1212
steps:
1313
- uses: actions/checkout@v5

scripts/release/updateAPIVersions.ts

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
import fsp from 'fs/promises';
22

33
import clientsConfig from '../../config/clients.config.json' with { type: 'json' };
4-
import { CI, exists, setVerbose, toAbsolutePath } from '../common.ts';
4+
import { exists, toAbsolutePath } from '../common.ts';
55
import { getGitHubUrl, getLanguageFolder } from '../config.ts';
66
import type { Language } from '../types.ts';
77

@@ -59,7 +59,6 @@ export async function updateAPIVersions(versions: Versions, changelog: Changelog
5959
}
6060

6161
if (lang === 'javascript' && releaseType) {
62-
setVerbose(CI);
6362
await updateJavaScriptPackages(releaseType);
6463
}
6564

0 commit comments

Comments
 (0)