diff --git a/bin/release.ts b/bin/release.ts index 0634084b43..ea7be963fc 100755 --- a/bin/release.ts +++ b/bin/release.ts @@ -249,6 +249,9 @@ async function stripPrereleaseTags(tags: string[], version: string) { await execa.stdout("git", ["tag", "-d", tag]) } } + + // We also need to remove the "edge" tag + await execa.stdout("git", ["tag", "-d", "edge"]) } (async () => {