There was an error while loading. Please reload this page.
1 parent 7484d39 commit 9102871Copy full SHA for 9102871
scripts/release.ts
@@ -359,7 +359,11 @@ async function main() {
359
}
360
361
step('\nPushing to Github...')
362
- await runIfNotDry('git', ['push', 'origin', ...versionsToPush])
+ // NOTE: push tags one by one, GitHub silently skips push events when >3
363
+ // tags are pushed in a single command, so CI workflows would never trigger.
364
+ for (const tag of versionsToPush) {
365
+ await runIfNotDry('git', ['push', 'origin', tag])
366
+ }
367
await runIfNotDry('git', ['push'])
368
369
0 commit comments