We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 692c6b7 commit c1ab158Copy full SHA for c1ab158
lib/promote_release.js
@@ -238,7 +238,7 @@ class ReleasePromotion {
238
return this.config.username;
239
}
240
241
- secureTagRelease() {
+ async secureTagRelease() {
242
const { version, isLTS, ltsCodename } = this;
243
244
const secureTag = path.join(
@@ -254,7 +254,7 @@ class ReleasePromotion {
254
`${this.date} Node.js v${version} ${releaseInfo} Release`
255
];
256
257
- return runSync(secureTag, secureTagOptions);
+ await runAsync(secureTag, secureTagOptions);
258
259
260
// Set up the branch so that nightly builds are produced with the next
0 commit comments